From fc6278e4cbe00acba0c8bdbe645df85e607af667 Mon Sep 17 00:00:00 2001 From: Fuwn Date: Mon, 27 Oct 2025 22:20:07 -0700 Subject: feat(gateway:commands): Add timeout command --- packages/gateway/src/commands/commandHandler.ts | 2 ++ 1 file changed, 2 insertions(+) (limited to 'packages/gateway/src/commands/commandHandler.ts') 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), ]); }); }; -- cgit v1.2.3