13
0
geforkt von Mirrors/Paper

Fixed fallbackPrefix not being lowercased, which would break prefixes for plugins with an uppercase char in the name

By: stevenh <steven.hartland@multiplay.co.uk>
Dieser Commit ist enthalten in:
Bukkit/Spigot 2011-06-12 16:35:26 +01:00
Ursprung c5408f1030
Commit 089c229c1d

Datei anzeigen

@ -87,11 +87,12 @@ public final class SimpleCommandMap implements CommandMap {
return false;
}
String lowerPrefix = fallbackPrefix.trim().toLowerCase();
boolean registerdPassedLabel = true;
// If the command exists but is an alias we overwrite it, otherwise we rename it based on the fallbackPrefix
while (knownCommands.containsKey(lowerLabel) && !aliases.contains(lowerLabel)) {
lowerLabel = fallbackPrefix + ":" + lowerLabel;
lowerLabel = lowerPrefix + ":" + lowerLabel;
registerdPassedLabel = false;
}