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

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