From a2dcdddfc67e3e514fc3a2dd555df20c749c0af2 Mon Sep 17 00:00:00 2001 From: Anthony Date: Mon, 25 Jul 2022 02:18:28 +0100 Subject: [PATCH] feat(arabot): add ping command --- src/commands/utils/ping.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/commands/utils/ping.ts b/src/commands/utils/ping.ts index 6bb9764..7055331 100644 --- a/src/commands/utils/ping.ts +++ b/src/commands/utils/ping.ts @@ -25,11 +25,11 @@ export class PingCommand extends Command { super(context, { ...options, name: 'ping', - description: 'ping pong', + description: 'Pings the bot', }); } - // Registers the slash command + // Registers that this is a slash command public override registerApplicationCommands(registry: Command.Registry) { registry.registerChatInputCommand((builder) => builder .setName(this.name)