From 7918f73e7d6fabc7dc97a8be7c3cb2ce0087f1ce Mon Sep 17 00:00:00 2001 From: Anthony Berg Date: Wed, 15 Jan 2025 20:06:22 +0100 Subject: [PATCH] feat: turn off the fixer for the roles reassignment --- src/listeners/fixRoles.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/listeners/fixRoles.ts b/src/listeners/fixRoles.ts index b3f1cfd..9e2cc0e 100644 --- a/src/listeners/fixRoles.ts +++ b/src/listeners/fixRoles.ts @@ -40,7 +40,7 @@ export class FixRolesOnReady extends Listener { // THIS SHOULD BE DISABLED BY DEFAULT // THIS IS ONLY USED FOR RESTORING ROLES TO THE SERVER! // ENABLING THIS UNINTENTIONALLY WILL CAUSE SLOWDOWNS TO THE BOT DUE TO RATE LIMITING! - enabled: true, + enabled: false, }); } @@ -59,7 +59,7 @@ export class FixRolesOnReady extends Listener { // Fetching the channel for the logs // Leave the snowflake parameter empty for no logs - const logChannel = await client.channels.fetch('1329152627312824320'); + const logChannel = await client.channels.fetch(''); const sendLogs = logChannel !== null; if (!sendLogs) {