summaryrefslogtreecommitdiff
path: root/packages/gateway/src/commands/say.ts
diff options
context:
space:
mode:
authorFuwn <[email protected]>2026-04-05 09:31:26 +0000
committerFuwn <[email protected]>2026-04-05 09:31:26 +0000
commit8ead117715728f5eaa388457c37ffd79dcbba8f8 (patch)
tree222fd34d49484749bcf9edd5a5d6368753b3104c /packages/gateway/src/commands/say.ts
parentfeat(interactions:server): Add additional allowed role IDs (diff)
downloadumabotdiscord-8ead117715728f5eaa388457c37ffd79dcbba8f8.tar.xz
umabotdiscord-8ead117715728f5eaa388457c37ffd79dcbba8f8.zip
feat(gateway:commands): Add sayd command
Diffstat (limited to 'packages/gateway/src/commands/say.ts')
-rw-r--r--packages/gateway/src/commands/say.ts1
1 files changed, 1 insertions, 0 deletions
diff --git a/packages/gateway/src/commands/say.ts b/packages/gateway/src/commands/say.ts
index 9df7abe..70fd72e 100644
--- a/packages/gateway/src/commands/say.ts
+++ b/packages/gateway/src/commands/say.ts
@@ -5,6 +5,7 @@ export const handleSayCommand = async (message: Message) => {
if (message.author.bot) return;
if ((message as any).saycHandled) return;
+ if ((message as any).saydHandled) return;
if (message.content.toLowerCase().startsWith("uma!say")) {
const application = await message.client.application?.fetch();