From f4d3752de7ddc4875a1732173afc761d6fc7e05f Mon Sep 17 00:00:00 2001 From: Liam Date: Fri, 28 Jun 2024 19:53:49 +0100 Subject: [PATCH] fix image command category --- .../cc/fascinated/bat/command/impl/fun/image/ImageCommand.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/main/java/cc/fascinated/bat/command/impl/fun/image/ImageCommand.java b/src/main/java/cc/fascinated/bat/command/impl/fun/image/ImageCommand.java index 3d88067..d72ea26 100644 --- a/src/main/java/cc/fascinated/bat/command/impl/fun/image/ImageCommand.java +++ b/src/main/java/cc/fascinated/bat/command/impl/fun/image/ImageCommand.java @@ -1,6 +1,7 @@ package cc.fascinated.bat.command.impl.fun.image; import cc.fascinated.bat.command.BatCommand; +import cc.fascinated.bat.command.Category; import cc.fascinated.bat.command.CommandInfo; import lombok.NonNull; import org.springframework.beans.factory.annotation.Autowired; @@ -11,7 +12,7 @@ import org.springframework.stereotype.Component; * @author Fascinated (fascinated7) */ @Component -@CommandInfo(name = "image", description = "View a random image", guildOnly = false) +@CommandInfo(name = "image", description = "View a random image", guildOnly = false, category = Category.FUN) public class ImageCommand extends BatCommand { @Autowired public ImageCommand(@NonNull ApplicationContext context) {