summary refs log tree commit diff
path: root/src/util
diff options
context:
space:
mode:
authorChrisChrome <chris@chrischro.me>2026-02-16 11:49:44 -0700
committerChrisChrome <chris@chrischro.me>2026-02-16 11:49:44 -0700
commitc1679ec394f36cefa74a412958412c707769ac09 (patch)
tree956a0d7ee9e538bf71796eb64ddd04d60e94db77 /src/util
parentfix (diff)
downloadserver-ts-reg-ipchecks.tar.xz
Separate IP check options during registration reg-ipchecks
Diffstat (limited to 'src/util')
-rw-r--r--src/util/config/types/RegisterConfiguration.ts3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/util/config/types/RegisterConfiguration.ts b/src/util/config/types/RegisterConfiguration.ts

index e71f16dd0..484ba66b1 100644 --- a/src/util/config/types/RegisterConfiguration.ts +++ b/src/util/config/types/RegisterConfiguration.ts
@@ -34,5 +34,6 @@ export class RegisterConfiguration { blockAbuseIpDbAboveScore: number = 75; // 0 to disable incrementingDiscriminators: boolean = false; // random otherwise defaultRights: string = "875069521787904"; // See `npm run generate:rights` - checkIp: boolean = true; + enableAbuseIpDb: boolean = false; + enableIpData: boolean = false; }