Update commands description
This commit is contained in:
parent
1cac8efdce
commit
8fa0606322
@ -153,9 +153,9 @@ just add the chat bot to your server and enjoy.
|
|||||||
### Commands
|
### Commands
|
||||||
| Command | Description |
|
| Command | Description |
|
||||||
| --- | --- |
|
| --- | --- |
|
||||||
| `/ping` | A very simple ping command |
|
| `/ping` | Ping the bot to check if it is online |
|
||||||
| `/chat` | Say anything to the Chat Bot |
|
| `/chat` | Chat with the bot |
|
||||||
| `/clear` | Delete your interactions with the Chat bot |
|
| `/clear` | Clear the chat history with the bot |
|
||||||
|
|
||||||
<p align="right">(<a href="#readme-top">back to top</a>)</p>
|
<p align="right">(<a href="#readme-top">back to top</a>)</p>
|
||||||
|
|
||||||
|
@ -5,7 +5,7 @@ import { Command } from '@/bot/models/command';
|
|||||||
|
|
||||||
export const ClearCommand: Command = {
|
export const ClearCommand: Command = {
|
||||||
name: 'clear',
|
name: 'clear',
|
||||||
description: 'Delete your interactions with the Chat bot',
|
description: 'Clear the chat history with the bot',
|
||||||
type: ApplicationCommandType.ChatInput,
|
type: ApplicationCommandType.ChatInput,
|
||||||
execute: async (client: Client, interaction: CommandInteraction) => {
|
execute: async (client: Client, interaction: CommandInteraction) => {
|
||||||
/**
|
/**
|
||||||
|
@ -3,7 +3,7 @@ import { Command } from '@/bot/models/command';
|
|||||||
|
|
||||||
export const PingCommand: Command = {
|
export const PingCommand: Command = {
|
||||||
name: 'ping',
|
name: 'ping',
|
||||||
description: 'A very simple ping command',
|
description: 'Ping the bot to check if it is online',
|
||||||
type: ApplicationCommandType.ChatInput,
|
type: ApplicationCommandType.ChatInput,
|
||||||
execute: async (client: Client, interaction: CommandInteraction) => {
|
execute: async (client: Client, interaction: CommandInteraction) => {
|
||||||
const content = 'Pong';
|
const content = 'Pong';
|
||||||
|
Loading…
Reference in New Issue
Block a user