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 b8f511ea7..99c882aa5 100644 --- a/proxy/src/main/java/com/velocitypowered/proxy/command/VelocityCommandManager.java +++ b/proxy/src/main/java/com/velocitypowered/proxy/command/VelocityCommandManager.java @@ -112,8 +112,6 @@ public class VelocityCommandManager implements CommandManager { dispatcher.getRoot().addChild(node); while (aliasIterator.hasNext()) { String otherAlias = aliasIterator.next(); - Preconditions.checkArgument(!hasCommand(otherAlias), - "alias %s is already registered", otherAlias); dispatcher.getRoot().addChild(BrigadierUtils.buildRedirect(otherAlias, node)); } }