summary refs log tree commit diff
path: root/scripts/rights.js
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/rights.js')
-rw-r--r--scripts/rights.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/rights.js b/scripts/rights.js

index 5ae576ef..a6d23855 100644 --- a/scripts/rights.js +++ b/scripts/rights.js
@@ -12,7 +12,7 @@ let lines3 = lines2.filter((y) => y.includes(": BitFlag(")); let lines4 = lines3.map((x) => x.split("//")[0].trim()); function BitFlag(int) { - return 1n << BigInt(int); + return 1n << eval(`${int}n`); } let rights = [];