From 7c686b4b58ca7018df21dbd271e3682bd6aa4175 Mon Sep 17 00:00:00 2001 From: KHobbits Date: Fri, 6 Sep 2013 23:54:37 +0100 Subject: Fix case sensitivity on {PLAYERLIST:group} --- .../src/com/earth2me/essentials/textreader/KeywordReplacer.java | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/Essentials/src/com/earth2me/essentials/textreader/KeywordReplacer.java b/Essentials/src/com/earth2me/essentials/textreader/KeywordReplacer.java index 3ccc6e929..30660a971 100644 --- a/Essentials/src/com/earth2me/essentials/textreader/KeywordReplacer.java +++ b/Essentials/src/com/earth2me/essentials/textreader/KeywordReplacer.java @@ -24,6 +24,7 @@ import static com.earth2me.essentials.textreader.KeywordType.DISPLAYNAME; import static com.earth2me.essentials.textreader.KeywordType.PLAYER; import java.util.EnumMap; import java.util.HashMap; +import java.util.Locale; import java.util.logging.Level; import java.util.regex.Matcher; import java.util.regex.Pattern; @@ -110,7 +111,7 @@ public class KeywordReplacer implements IText String subKeyword = ""; if (matchTokens.length > 1) { - subKeyword = matchTokens[1]; + subKeyword = matchTokens[1].toLowerCase(Locale.ENGLISH); } if (keywordCache.containsKey(validKeyword)) @@ -241,9 +242,9 @@ public class KeywordReplacer implements IText { replacer = outputList.get(""); } - else if (outputList.containsKey(matchTokens[1])) + else if (outputList.containsKey(matchTokens[1].toLowerCase(Locale.ENGLISH))) { - replacer = outputList.get(matchTokens[1]); + replacer = outputList.get(matchTokens[1].toLowerCase(Locale.ENGLISH)); } else if (matchTokens.length > 2) { -- cgit v1.2.3