mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-04-13 21:28:39 +01:00
fix typecast to BigInt (#3598)
This commit is contained in:
parent
54460405b1
commit
15584f8f1e
@ -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 {
|
||||
|
Loading…
x
Reference in New Issue
Block a user