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:
@@ -22,9 +22,9 @@ public final class GravityFlipCommand extends AbstractCommandCollection {
|
|||||||
super("gravityflip", "Commandes de gestion des zones Gravity Flip");
|
super("gravityflip", "Commandes de gestion des zones Gravity Flip");
|
||||||
this.addSubCommand(new GravityFlipWandSubCommand());
|
this.addSubCommand(new GravityFlipWandSubCommand());
|
||||||
this.addSubCommand(new GravityFlipDefineSubCommand(plugin));
|
this.addSubCommand(new GravityFlipDefineSubCommand(plugin));
|
||||||
// 04-04 will addSubCommand(new GravityFlipListSubCommand(plugin));
|
this.addSubCommand(new GravityFlipListSubCommand(plugin));
|
||||||
// addSubCommand(new GravityFlipDeleteSubCommand(plugin));
|
this.addSubCommand(new GravityFlipDeleteSubCommand(plugin));
|
||||||
// addSubCommand(new GravityFlipToggleSubCommand(plugin));
|
this.addSubCommand(new GravityFlipToggleSubCommand(plugin));
|
||||||
// addSubCommand(new GravityFlipTpSubCommand(plugin));
|
this.addSubCommand(new GravityFlipTpSubCommand(plugin));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user