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 072c45634..00d0cc469 100644 --- a/proxy/src/main/java/com/velocitypowered/proxy/command/VelocityCommandManager.java +++ b/proxy/src/main/java/com/velocitypowered/proxy/command/VelocityCommandManager.java @@ -60,7 +60,6 @@ public class VelocityCommandManager implements CommandManager { Preconditions.checkNotNull(alias, "alias"); Preconditions.checkNotNull(command, "command"); Preconditions.checkNotNull(otherAliases, "otherAliases"); - Preconditions.checkArgument(!hasCommand(alias), "alias already registered"); register(metaBuilder(alias).aliases(otherAliases).build(), command); }