Update commands description
This commit is contained in:
@ -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) => {
|
||||
/**
|
||||
|
@ -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';
|
||||
|
Reference in New Issue
Block a user