diff options
| author | Fuwn <[email protected]> | 2025-11-10 03:29:18 -0800 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2025-11-10 03:29:18 -0800 |
| commit | ee414ef0ee6c37ca1921d0ff598c4d687f25b796 (patch) | |
| tree | af398a3d4c3699dd5887801166952ad85e3b13af /packages/gateway/src/commands/commandHandler.ts | |
| parent | fix(gateway:reactionRoles): Update intents (diff) | |
| download | umabotdiscord-ee414ef0ee6c37ca1921d0ff598c4d687f25b796.tar.xz umabotdiscord-ee414ef0ee6c37ca1921d0ff598c4d687f25b796.zip | |
feat(gateway:commands): Add message range deletion 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 7442c47..efa621a 100644 --- a/packages/gateway/src/commands/commandHandler.ts +++ b/packages/gateway/src/commands/commandHandler.ts @@ -12,6 +12,7 @@ import { handleWebhookCommand } from "./webhook"; import { handleDeleteWebhookCommand } from "./deleteWebhook"; import { handleCharacterClaimUsageCommand } from "./characterClaimUsage"; import { handleTimeoutCommand } from "./timeout"; +import { handleDeleteRangeCommand } from "./deleteRange"; export const handleCommandHandler = (client: Client) => { client.on(Events.MessageCreate, async (message: Message) => { @@ -29,6 +30,7 @@ export const handleCommandHandler = (client: Client) => { handleCrpCommand(message), handleReactCommand(message), handleDeleteCommand(message), + handleDeleteRangeCommand(message), handlePinCommand(message), handleRoleCommand(message), handleWebhookCommand(message), |