Add some TODO notes to commands

This commit is contained in:
Len 2024-02-04 23:11:19 +01:00
parent dc7f2184f4
commit fb50af566a

View File

@ -14,20 +14,20 @@ public class IslandCommand extends PlayerSubCommand {
super(plugin, "island"); super(plugin, "island");
this.plugin = plugin; this.plugin = plugin;
registerSubCommand(new IslandGo(plugin)); registerSubCommand(new IslandGo(plugin)); // TODO -- Add some more output
registerSubCommand(new IslandSethome(plugin)); registerSubCommand(new IslandSethome(plugin)); // Todo -- Add some more output
registerSubCommand(new IslandRestart(plugin)); registerSubCommand(new IslandRestart(plugin)); // TODO -- Add IslandRestartCommand
registerSubCommand(new IslandAccept(plugin)); registerSubCommand(new IslandAccept(plugin)); // TODO -- Add IslandAcceptCommand
registerSubCommand(new IslandLeave(plugin)); registerSubCommand(new IslandLeave(plugin)); // TODO -- Add IslandLeaveCommand
registerSubCommand(new IslandMembers(plugin)); registerSubCommand(new IslandMembers(plugin)); // TODO -- Add IslandMembersCommand
registerSubCommand(new IslandLevel(plugin)); registerSubCommand(new IslandLevel(plugin)); // TODO -- Add IslandLevelCommand
// registerSubCommand(new IslandTop(plugin)); // registerSubCommand(new IslandTop(plugin)); // TODO -- Add IslandTopCommand
registerSubCommand(new IslandOptions(plugin)); registerSubCommand(new IslandOptions(plugin)); // TODO -- Add IslandOptionsCommand
registerSubCommand(new IslandConfirm(plugin)); registerSubCommand(new IslandConfirm(plugin)); // TODO -- Add IslandConfirmCommand
registerSubCommand(new IslandInvite(plugin)); registerSubCommand(new IslandInvite(plugin)); // TODO -- Add IslandInviteCommand
registerSubCommand(new IslandKick(plugin)); registerSubCommand(new IslandKick(plugin)); // TODO -- Add IslandKickCommand
registerSubCommand(new IslandSetOwner(plugin)); registerSubCommand(new IslandSetOwner(plugin)); // TODO -- Add some more output
registerSubCommand(new IslandVisit(plugin)); registerSubCommand(new IslandVisit(plugin)); // TODO -- Add some more output
} }
@Override @Override