Update upstream B/CB/S
This commit is contained in:
@@ -1,21 +0,0 @@
|
|||||||
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
||||||
From: Aikar <aikar@aikar.co>
|
|
||||||
Date: Tue, 20 Jun 2017 18:58:35 -0400
|
|
||||||
Subject: [PATCH] Allow plugins to override Vanilla commands with aliases
|
|
||||||
|
|
||||||
Spigot broke this in 1.12, re-adding the logic back
|
|
||||||
|
|
||||||
diff --git a/src/main/java/org/bukkit/command/SimpleCommandMap.java b/src/main/java/org/bukkit/command/SimpleCommandMap.java
|
|
||||||
index 6f733fe0..ac3d5035 100644
|
|
||||||
--- a/src/main/java/org/bukkit/command/SimpleCommandMap.java
|
|
||||||
+++ b/src/main/java/org/bukkit/command/SimpleCommandMap.java
|
|
||||||
@@ -0,0 +0,0 @@ public class SimpleCommandMap implements CommandMap {
|
|
||||||
*/
|
|
||||||
private synchronized boolean register(String label, Command command, boolean isAlias, String fallbackPrefix) {
|
|
||||||
knownCommands.put(fallbackPrefix + ":" + label, command);
|
|
||||||
- if (isAlias && knownCommands.containsKey(label)) {
|
|
||||||
+ if (("minecraft".equals(fallbackPrefix) || isAlias) && knownCommands.containsKey(label)) { // Paper - allow plugins to override vanilla commands as aliases
|
|
||||||
// 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
|
|
||||||
--
|
|
||||||
Submodule work/Bukkit updated: 052c8e5eb5...6751b88aad
Submodule work/CraftBukkit updated: 03f1e37ae2...f3356f1074
Submodule work/Spigot updated: 4df3c0ca36...b78586d1d4
Reference in New Issue
Block a user