From cd356121b73a4e4a6cf9abe5376b5d3c20e99b6e Mon Sep 17 00:00:00 2001 From: Teriuihi Date: Sun, 25 Aug 2024 19:50:38 +0200 Subject: [PATCH] Update CommandStaffJoinDate descriptions Improved the descriptions of the options for the CommandStaffJoinDate command. The "staff" and "join-time" options now have clearer descriptions, making their purposes more understandable for users. --- .../alttd/commandManager/commands/CommandStaffJoinDate.java | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/main/java/com/alttd/commandManager/commands/CommandStaffJoinDate.java b/src/main/java/com/alttd/commandManager/commands/CommandStaffJoinDate.java index ac4783d..a12837b 100644 --- a/src/main/java/com/alttd/commandManager/commands/CommandStaffJoinDate.java +++ b/src/main/java/com/alttd/commandManager/commands/CommandStaffJoinDate.java @@ -8,7 +8,6 @@ import com.alttd.util.Util; import net.dv8tion.jda.api.EmbedBuilder; import net.dv8tion.jda.api.JDA; import net.dv8tion.jda.api.Permission; -import net.dv8tion.jda.api.entities.IMentionable; import net.dv8tion.jda.api.entities.Member; import net.dv8tion.jda.api.entities.MessageEmbed; import net.dv8tion.jda.api.events.interaction.command.CommandAutoCompleteInteractionEvent; @@ -31,8 +30,8 @@ public class CommandStaffJoinDate extends DiscordCommand { public CommandStaffJoinDate(JDA jda, CommandManager commandManager) { this.commandData = Commands.slash(getName(), "View join date for staff members, or add them manually") - .addOption(OptionType.MENTIONABLE, "staff", "Set the soft lock \"on\" or \"off\"", false, false) - .addOption(OptionType.NUMBER, "join-time", "Channel to change soft lock state for", false, false) + .addOption(OptionType.MENTIONABLE, "staff", "The staff member to set/check the join date for", false, false) + .addOption(OptionType.NUMBER, "join-time", "The join date to set", false, false) .setDefaultPermissions(DefaultMemberPermissions.enabledFor(Permission.ADMINISTRATOR)) .setGuildOnly(true);