diff options
| author | Fuwn <[email protected]> | 2025-10-27 22:20:07 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2025-10-27 22:20:07 -0700 |
| commit | fc6278e4cbe00acba0c8bdbe645df85e607af667 (patch) | |
| tree | 3d6b2d128aca38064911cf8cb2032c019ffb21e9 /packages/gateway/src/commands/commandHandler.ts | |
| parent | feat(listeners:autoDeletion): Add additional banned strings (diff) | |
| download | umabotdiscord-fc6278e4cbe00acba0c8bdbe645df85e607af667.tar.xz umabotdiscord-fc6278e4cbe00acba0c8bdbe645df85e607af667.zip | |
feat(gateway:commands): Add timeout command
Diffstat (limited to 'packages/gateway/src/commands/commandHandler.ts')
| -rw-r--r-- | packages/gateway/src/commands/commandHandler.ts | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/packages/gateway/src/commands/commandHandler.ts b/packages/gateway/src/commands/commandHandler.ts index 163568e..7442c47 100644 --- a/packages/gateway/src/commands/commandHandler.ts +++ b/packages/gateway/src/commands/commandHandler.ts @@ -11,6 +11,7 @@ import { handleVerbalGatesCommand } from "./verbalGates"; import { handleWebhookCommand } from "./webhook"; import { handleDeleteWebhookCommand } from "./deleteWebhook"; import { handleCharacterClaimUsageCommand } from "./characterClaimUsage"; +import { handleTimeoutCommand } from "./timeout"; export const handleCommandHandler = (client: Client) => { client.on(Events.MessageCreate, async (message: Message) => { @@ -33,6 +34,7 @@ export const handleCommandHandler = (client: Client) => { handleWebhookCommand(message), handleDeleteWebhookCommand(message), handleCharacterClaimUsageCommand(message), + handleTimeoutCommand(message), ]); }); }; |