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() data: new SlashCommandBuilder()
.setName("ban") .setName("ban")
.setDescription("Ban a user") .setDescription("Bans a user")
.addUserOption(option => .addUserOption(option =>
option option
.setName("user") .setName("user")

View File

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

View File

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

View File

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

View File

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