Update commands description

This commit is contained in:
Matias Espinoza 2023-03-20 16:41:12 -03:00
parent 1cac8efdce
commit 8fa0606322
3 changed files with 5 additions and 5 deletions

View File

@ -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 |
<p align="right">(<a href="#readme-top">back to top</a>)</p>

View File

@ -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) => {
/**

View File

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