diff --git a/proxy/src/main/java/com/velocitypowered/proxy/command/VelocityCommandManager.java b/proxy/src/main/java/com/velocitypowered/proxy/command/VelocityCommandManager.java index ff6d7c002..fc6df6f5d 100644 --- a/proxy/src/main/java/com/velocitypowered/proxy/command/VelocityCommandManager.java +++ b/proxy/src/main/java/com/velocitypowered/proxy/command/VelocityCommandManager.java @@ -102,11 +102,9 @@ public class VelocityCommandManager implements CommandManager { if (!(command instanceof BrigadierCommand)) { if (!meta.getHints().isEmpty()) { - // If the user specified a hint, then allow the hint to take precedence over the catch-all - // argument. - node.getChildren().clear(); + // If the user specified a hint, then add the hints to the command node directly. for (CommandNode hint : meta.getHints()) { - node.addChild(BrigadierUtils.wrapForHinting(hint, node.getCommand())); + node.addChild(hint); } } }