diff options
| -rw-r--r-- | packages/gateway/src/listeners/roleProtection.ts | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/packages/gateway/src/listeners/roleProtection.ts b/packages/gateway/src/listeners/roleProtection.ts index aa24dbf..61d60da 100644 --- a/packages/gateway/src/listeners/roleProtection.ts +++ b/packages/gateway/src/listeners/roleProtection.ts @@ -1,5 +1,9 @@ import { Client, Events } from "discord.js"; -import { CENTRAL_GUILD_ID, CENTRAL_PROTECTED_ROLE_ID, COLOR_ROLE_IDS } from "../constants"; +import { + CENTRAL_GUILD_ID, + CENTRAL_PROTECTED_ROLE_ID, + COLOR_ROLE_IDS, +} from "../constants"; export const handleRoleProtection = (client: Client) => { client.on(Events.GuildMemberUpdate, async (oldMember, newMember) => { |