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 |
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';