add feature toggling

This commit is contained in:
Lee
2024-06-30 05:15:37 +01:00
parent 93350f1506
commit ee6456e4d8
14 changed files with 315 additions and 11 deletions

View File

@ -33,6 +33,7 @@ public abstract class Feature {
*/
public void registerCommand(@NonNull CommandService commandService, @NonNull BatCommand command) {
command.setCategory(category);
command.setFeature(this);
commandService.registerCommand(command);
}
}