From 3038be9a2832d462027f9228db0702b90a4bf757 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Beatrice=20Dellac=C3=A0?= Date: Mon, 21 Nov 2022 15:14:57 +0100 Subject: [PATCH] Actually register help command --- src/main/java/wtf/beatrice/hidekobot/utils/SlashCommandUtil.java | 1 + 1 file changed, 1 insertion(+) 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.")); }};