feat(04-04): wire list/delete/toggle/tp subcommands into GravityFlipCommand

Registers the 4 remaining Phase 4 subcommands in the root command ctor.
addSubCommand count: 6 (wand, define, list, delete, toggle, tp) — feature-complete
for the 11 v1 requirements (modulo UAT in 04-05).
This commit is contained in:
2026-04-24 14:55:40 +02:00
parent c42ebbe0e9
commit e254d3744f
@@ -22,9 +22,9 @@ public final class GravityFlipCommand extends AbstractCommandCollection {
super("gravityflip", "Commandes de gestion des zones Gravity Flip");
this.addSubCommand(new GravityFlipWandSubCommand());
this.addSubCommand(new GravityFlipDefineSubCommand(plugin));
// 04-04 will addSubCommand(new GravityFlipListSubCommand(plugin));
// addSubCommand(new GravityFlipDeleteSubCommand(plugin));
// addSubCommand(new GravityFlipToggleSubCommand(plugin));
// addSubCommand(new GravityFlipTpSubCommand(plugin));
this.addSubCommand(new GravityFlipListSubCommand(plugin));
this.addSubCommand(new GravityFlipDeleteSubCommand(plugin));
this.addSubCommand(new GravityFlipToggleSubCommand(plugin));
this.addSubCommand(new GravityFlipTpSubCommand(plugin));
}
}