From f3e51167087cbb071f3db654e94b7b4130663c29 Mon Sep 17 00:00:00 2001 From: Liam Date: Fri, 28 Jun 2024 18:50:45 +0100 Subject: [PATCH] fix spotify command category --- .../bat/features/spotify/command/SpotifyCommand.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/main/java/cc/fascinated/bat/features/spotify/command/SpotifyCommand.java b/src/main/java/cc/fascinated/bat/features/spotify/command/SpotifyCommand.java index 3d743ab..1a16ff4 100644 --- a/src/main/java/cc/fascinated/bat/features/spotify/command/SpotifyCommand.java +++ b/src/main/java/cc/fascinated/bat/features/spotify/command/SpotifyCommand.java @@ -1,6 +1,7 @@ package cc.fascinated.bat.features.spotify.command; 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 = "spotify", description = "Change your Spotify settings", guildOnly = false) +@CommandInfo(name = "spotify", description = "Change your Spotify settings", guildOnly = false, category = Category.MUSIC) public class SpotifyCommand extends BatCommand { @Autowired public SpotifyCommand(@NonNull ApplicationContext context) {