Update commands description.

This commit is contained in:
2026-01-26 19:35:39 -05:00
parent 369b3bf133
commit 1214b7e98a

View File

@@ -10,7 +10,7 @@ interface Commands {
const botInfo: Commands = {
command: "/botInfo",
description:
"Lists information about the bot such as: creator, reason for creation, purpose, etc",
"Lists information about the bot such as: creator, reason for my creation, purpose and goal, etc",
groups: true,
private: true
};
@@ -26,14 +26,14 @@ const getGroupStats: Commands = {
const help: Commands = {
command: "/help",
description:
"Lists information about how to use and setup the bot and the list of available commands for the bot",
"Lists information about how to setup the bot and the list of available commands",
groups: true,
private: true
};
const registerGroup: Commands = {
command: "/registerGroup",
description: `Will add your group to the database, if your group doesn't exist already, to add to the "total groups" count on the bot stats website`,
description: `Will add your group to the database, if your group doesn't exist already\\. This is used to calculate the "total groups" count on the bot stats website`,
groups: true,
private: true
};