Updated command descriptions

This commit is contained in:
2023-12-05 14:37:18 +01:00
parent b0732bdaab
commit df82a66921
5 changed files with 5 additions and 5 deletions

View File

@@ -11,7 +11,7 @@ module.exports = {
data: new SlashCommandBuilder()
.setName("ban")
.setDescription("Ban a user")
.setDescription("Bans a user")
.addUserOption(option =>
option
.setName("user")

View File

@@ -31,7 +31,7 @@ module.exports = {
.addStringOption(option =>
option
.setName("query")
.setDescription("The IGN of a member.")
.setDescription("The query to search for. [Default: player]")
.setRequired(true)
).
addStringOption(option =>

View File

@@ -11,7 +11,7 @@ module.exports = {
data: new SlashCommandBuilder()
.setName("help")
.setDescription("Help command")
.setDescription("List's all commands usable by a member")
.setDMPermission(true),
/** @param { import('discord.js').ChatInputCommandInteraction } interaction */

View File

@@ -10,7 +10,7 @@ module.exports = {
data: new SlashCommandBuilder()
.setName("ping")
.setDescription("Get the bot's ping."),
.setDescription("Get's the bot's ping."),
/**
* @param { import("discord.js").ChatInputCommandInteraction } interaction

View File

@@ -14,7 +14,7 @@ module.exports = {
data: new SlashCommandBuilder()
.setName("update")
.setDescription("Update your guild rank.")
.setDescription("Update your discord roles.")
.setDMPermission(false),
/** @param { import('discord.js').ChatInputCommandInteraction } interaction */