summaryrefslogtreecommitdiff
path: root/packages/gateway/src/commands/commandHandler.ts
diff options
context:
space:
mode:
authorFuwn <[email protected]>2025-10-25 18:09:03 -0700
committerFuwn <[email protected]>2025-10-25 20:14:54 -0700
commitc7354cb00f38aba6fb5f5720477a3eed994837af (patch)
treea9de33c5afcf44055d2203798474ec19d30e2f06 /packages/gateway/src/commands/commandHandler.ts
parentfeat(gateway:commands): Add gate to webhook utility commands (diff)
downloadumabotdiscord-c7354cb00f38aba6fb5f5720477a3eed994837af.tar.xz
umabotdiscord-c7354cb00f38aba6fb5f5720477a3eed994837af.zip
feat(gateway:commands): Add character claim usage command
Diffstat (limited to 'packages/gateway/src/commands/commandHandler.ts')
-rw-r--r--packages/gateway/src/commands/commandHandler.ts2
1 files changed, 2 insertions, 0 deletions
diff --git a/packages/gateway/src/commands/commandHandler.ts b/packages/gateway/src/commands/commandHandler.ts
index 63ff6ed..163568e 100644
--- a/packages/gateway/src/commands/commandHandler.ts
+++ b/packages/gateway/src/commands/commandHandler.ts
@@ -10,6 +10,7 @@ import { handleRoleCommand } from "./role";
import { handleVerbalGatesCommand } from "./verbalGates";
import { handleWebhookCommand } from "./webhook";
import { handleDeleteWebhookCommand } from "./deleteWebhook";
+import { handleCharacterClaimUsageCommand } from "./characterClaimUsage";
export const handleCommandHandler = (client: Client) => {
client.on(Events.MessageCreate, async (message: Message) => {
@@ -31,6 +32,7 @@ export const handleCommandHandler = (client: Client) => {
handleRoleCommand(message),
handleWebhookCommand(message),
handleDeleteWebhookCommand(message),
+ handleCharacterClaimUsageCommand(message),
]);
});
};