diff --git a/src/main/java/wtf/beatrice/hidekobot/utils/SlashCommandUtil.java b/src/main/java/wtf/beatrice/hidekobot/utils/SlashCommandUtil.java index abd99ae..df756f9 100644 --- a/src/main/java/wtf/beatrice/hidekobot/utils/SlashCommandUtil.java +++ b/src/main/java/wtf/beatrice/hidekobot/utils/SlashCommandUtil.java @@ -31,6 +31,7 @@ public class SlashCommandUtil .addOption(OptionType.INTEGER, "amount", "The amount of messages to delete.") .setDefaultPermissions(DefaultMemberPermissions.enabledFor(Permission.MESSAGE_MANAGE))); add(Commands.slash("coinflip", "Flip a coin and get head or tails.")); + add(Commands.slash("help", "Get general help on the bot.")); add(Commands.slash("invite", "Get an invite link for the bot.")); add(Commands.slash("ping", "Test if the bot is responsive.")); }};