Hints will override the default catch-all by default

This commit is contained in:
Andrew Steinborn
2020-07-29 03:55:59 -04:00
parent ae0bf6cfca
commit 65e1b7be87

View File

@@ -101,8 +101,13 @@ public class VelocityCommandManager implements CommandManager {
} }
if (!(command instanceof BrigadierCommand)) { if (!(command instanceof BrigadierCommand)) {
for (CommandNode<CommandSource> hint : meta.getHints()) { if (!meta.getHints().isEmpty()) {
node.addChild(BrigadierUtils.wrapForHinting(hint, node.getCommand())); // If the user specified a hint, then allow the hint to take precedence over the catch-all
// argument.
node.getChildren().clear();
for (CommandNode<CommandSource> hint : meta.getHints()) {
node.addChild(BrigadierUtils.wrapForHinting(hint, node.getCommand()));
}
} }
} }