Skip to content

Commit d4ca130

Browse files
committed
Added RoleSelectCommand to Features
1 parent d40f59c commit d4ca130

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

application/src/main/java/org/togetherjava/tjbot/commands/Commands.java

Whitespace-only changes.

application/src/main/java/org/togetherjava/tjbot/commands/Features.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
import net.dv8tion.jda.api.JDA;
44
import org.jetbrains.annotations.NotNull;
55
import org.togetherjava.tjbot.commands.basic.PingCommand;
6+
import org.togetherjava.tjbot.commands.basic.RoleSelectCommand;
67
import org.togetherjava.tjbot.commands.basic.VcActivityCommand;
78
import org.togetherjava.tjbot.commands.free.FreeCommand;
89
import org.togetherjava.tjbot.commands.mathcommands.TeXCommand;
@@ -75,10 +76,11 @@ public enum Features {
7576
features.add(new AuditCommand(actionsStore));
7677
features.add(new MuteCommand(actionsStore));
7778
features.add(new UnmuteCommand(actionsStore));
79+
features.add(new RoleSelectCommand());
7880

7981
// Mixtures
8082
features.add(new FreeCommand());
8183

8284
return features;
8385
}
84-
}
86+
}

0 commit comments

Comments
 (0)