fix typecast to BigInt (#3598)

This commit is contained in:
Leo Kim 2024-08-18 04:47:45 +09:00 committed by GitHub
parent 54460405b1
commit 15584f8f1e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -1709,7 +1709,7 @@ export class GameData {
}
getFormAttr(formIndex: integer): bigint {
return BigInt(1 << (7 + formIndex));
return BigInt(1) << BigInt(7 + formIndex);
}
consolidateDexData(dexData: DexData): void {