Merge pull request #527 from erkinalp/patch-3

This commit is contained in:
Samuel
2021-11-30 19:51:59 +01:00
committed by GitHub
+1 -1
View File
@@ -24,7 +24,7 @@ export function snowflakeBasedInvite() {
let str = "";
for (let i=0; i < 10; i++) {
str += chars.charAt(snowflake % base);
str += chars.charAt(BigInt.asUintN(snowflake % base));
snowflake = snowflake / base;
}