diff --git a/src/main/java/cc/fascinated/bat/base/commands/general/HelpCommand.java b/src/main/java/cc/fascinated/bat/base/commands/general/HelpCommand.java index d98f803..09d78d9 100644 --- a/src/main/java/cc/fascinated/bat/base/commands/general/HelpCommand.java +++ b/src/main/java/cc/fascinated/bat/base/commands/general/HelpCommand.java @@ -88,7 +88,10 @@ public class HelpCommand extends BatCommand implements EventListener { } - event.replyEmbeds(createHomeEmbed(event.isFromGuild())).addComponents(interactionBuilder.build()).queue(); + event.replyEmbeds(createHomeEmbed(event.isFromGuild())) + .addComponents(interactionBuilder.build()) + .setEphemeral(true) + .queue(); } /** @@ -103,7 +106,7 @@ public class HelpCommand extends BatCommand implements EventListener { continue; } long commandCount = commandService.getCommandsByCategory(category, ranInsideGuild).size(); - categories.append("➜ %s - **%s Command%s**\n".formatted( + categories.append("- %s: `%s Command%s`\n".formatted( category.getName(), commandCount, commandCount == 1 ? "" : "s"