diff --git a/src/commands/ban.js b/src/commands/ban.js index f31794e..dd0e0a0 100644 --- a/src/commands/ban.js +++ b/src/commands/ban.js @@ -11,7 +11,7 @@ module.exports = { data: new SlashCommandBuilder() .setName("ban") - .setDescription("Ban a user") + .setDescription("Bans a user") .addUserOption(option => option .setName("user") diff --git a/src/commands/guild.js b/src/commands/guild.js index d1b2ba6..2e20ce2 100644 --- a/src/commands/guild.js +++ b/src/commands/guild.js @@ -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 => diff --git a/src/commands/help.js b/src/commands/help.js index 158caa7..397a5dc 100644 --- a/src/commands/help.js +++ b/src/commands/help.js @@ -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 */ diff --git a/src/commands/ping.js b/src/commands/ping.js index c1c1618..f7cd433 100644 --- a/src/commands/ping.js +++ b/src/commands/ping.js @@ -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 diff --git a/src/commands/update.js b/src/commands/update.js index 119cab2..ab03246 100644 --- a/src/commands/update.js +++ b/src/commands/update.js @@ -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 */