From d088e2bf9530b4767ce99e94f2c618cf00fb62dd Mon Sep 17 00:00:00 2001 From: Nick Date: Thu, 27 Jun 2024 21:15:27 -0500 Subject: [PATCH] Add category to ChannelCommand --- .../bat/command/impl/server/channel/ChannelCommand.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/main/java/cc/fascinated/bat/command/impl/server/channel/ChannelCommand.java b/src/main/java/cc/fascinated/bat/command/impl/server/channel/ChannelCommand.java index 65f5193..dae9dd6 100644 --- a/src/main/java/cc/fascinated/bat/command/impl/server/channel/ChannelCommand.java +++ b/src/main/java/cc/fascinated/bat/command/impl/server/channel/ChannelCommand.java @@ -1,6 +1,7 @@ package cc.fascinated.bat.command.impl.server.channel; 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 Nick (okNick) */ @Component -@CommandInfo(name = "channel", description = "View or set information about a channel") +@CommandInfo(name = "channel", description = "View or set information about a channel", category = Category.SERVER) public class ChannelCommand extends BatCommand { @Autowired public ChannelCommand(@NonNull ApplicationContext context) {