diff options
Diffstat (limited to 'packages/gateway/src/commands/say.ts')
| -rw-r--r-- | packages/gateway/src/commands/say.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/gateway/src/commands/say.ts b/packages/gateway/src/commands/say.ts index 8a9ab5a..23c2880 100644 --- a/packages/gateway/src/commands/say.ts +++ b/packages/gateway/src/commands/say.ts @@ -1,5 +1,5 @@ import { Message } from "discord.js"; -import { GUILD_ID } from "../constants"; +import { CENTRAL_GUILD_ID } from "../constants"; import { replyWithCleanup } from "../utilities"; export const handleSayCommand = async (message: Message) => { @@ -30,7 +30,7 @@ export const handleSayCommand = async (message: Message) => { if (messageIdMatch) { try { - const guild = message.client.guilds.cache.get(GUILD_ID); + const guild = message.client.guilds.cache.get(CENTRAL_GUILD_ID); if (!guild) { await replyWithCleanup(message, "❌ Guild not found."); |