mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-04-22 17:44:19 +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 {
|
getFormAttr(formIndex: integer): bigint {
|
||||||
return BigInt(1 << (7 + formIndex));
|
return BigInt(1) << BigInt(7 + formIndex);
|
||||||
}
|
}
|
||||||
|
|
||||||
consolidateDexData(dexData: DexData): void {
|
consolidateDexData(dexData: DexData): void {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user