summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/main/java/org/bukkit/command/SimpleCommandMap.java5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/main/java/org/bukkit/command/SimpleCommandMap.java b/src/main/java/org/bukkit/command/SimpleCommandMap.java
index 4bf79988..8681987f 100644
--- a/src/main/java/org/bukkit/command/SimpleCommandMap.java
+++ b/src/main/java/org/bukkit/command/SimpleCommandMap.java
@@ -131,8 +131,9 @@ public class SimpleCommandMap implements CommandMap {
* @return true if command was registered, false otherwise.
*/
private synchronized boolean register(String label, Command command, boolean isAlias) {
- if (isAlias && knownCommands.containsKey(label)) {
- // Request is for an alias and it conflicts with a existing command or previous alias ignore it
+ if ((command instanceof VanillaCommand || isAlias) && knownCommands.containsKey(label)) {
+ // Request is for an alias/fallback command and it conflicts with
+ // a existing command or previous alias ignore it
// Note: This will mean it gets removed from the commands list of active aliases
return false;
}