From 8fa0606322fa38f55b11ea11f24671a40ba7ad51 Mon Sep 17 00:00:00 2001 From: Matias Espinoza Date: Mon, 20 Mar 2023 16:41:12 -0300 Subject: [PATCH] Update commands description --- README.md | 6 +++--- src/bot/commands/clearCommand.ts | 2 +- src/bot/commands/pingCommand.ts | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index f2ab6b4..66ee54b 100644 --- a/README.md +++ b/README.md @@ -153,9 +153,9 @@ just add the chat bot to your server and enjoy. ### Commands | Command | Description | | --- | --- | -| `/ping` | A very simple ping command | -| `/chat` | Say anything to the Chat Bot | -| `/clear` | Delete your interactions with the Chat bot | +| `/ping` | Ping the bot to check if it is online | +| `/chat` | Chat with the bot | +| `/clear` | Clear the chat history with the bot |

(back to top)

diff --git a/src/bot/commands/clearCommand.ts b/src/bot/commands/clearCommand.ts index 70c0c72..bcbdbcd 100644 --- a/src/bot/commands/clearCommand.ts +++ b/src/bot/commands/clearCommand.ts @@ -5,7 +5,7 @@ import { Command } from '@/bot/models/command'; export const ClearCommand: Command = { name: 'clear', - description: 'Delete your interactions with the Chat bot', + description: 'Clear the chat history with the bot', type: ApplicationCommandType.ChatInput, execute: async (client: Client, interaction: CommandInteraction) => { /** diff --git a/src/bot/commands/pingCommand.ts b/src/bot/commands/pingCommand.ts index 2bcff50..5c35547 100644 --- a/src/bot/commands/pingCommand.ts +++ b/src/bot/commands/pingCommand.ts @@ -3,7 +3,7 @@ import { Command } from '@/bot/models/command'; export const PingCommand: Command = { name: 'ping', - description: 'A very simple ping command', + description: 'Ping the bot to check if it is online', type: ApplicationCommandType.ChatInput, execute: async (client: Client, interaction: CommandInteraction) => { const content = 'Pong';