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>
This commit is contained in:
Bukkit/Spigot 2011-06-12 16:35:26 +01:00
parent c5408f1030
commit 089c229c1d

View file

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