summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKHobbits <rob@khobbits.co.uk>2013-03-28 19:50:50 -0700
committerKHobbits <rob@khobbits.co.uk>2013-03-28 19:50:50 -0700
commit879560092f6391596c02f2aef50362a5cfccbf9d (patch)
tree94c166bb295957821dcffe91d4ce5b6aa37d4257
parentc7f62700d5ba8ea259f4f57d79dfd3fc8bb25ee7 (diff)
parent386b73dbdba4fb9b6945606a7cac1638b4ed820f (diff)
downloadEssentials-879560092f6391596c02f2aef50362a5cfccbf9d.tar
Essentials-879560092f6391596c02f2aef50362a5cfccbf9d.tar.gz
Essentials-879560092f6391596c02f2aef50362a5cfccbf9d.tar.lz
Essentials-879560092f6391596c02f2aef50362a5cfccbf9d.tar.xz
Essentials-879560092f6391596c02f2aef50362a5cfccbf9d.zip
Merge pull request #423 from kukelekuuk00/patch-1
[Fix] Strip colourcodes from groups in /list (internal only)
-rw-r--r--Essentials/src/com/earth2me/essentials/commands/Commandlist.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/Essentials/src/com/earth2me/essentials/commands/Commandlist.java b/Essentials/src/com/earth2me/essentials/commands/Commandlist.java
index 34aacdd53..02c46a176 100644
--- a/Essentials/src/com/earth2me/essentials/commands/Commandlist.java
+++ b/Essentials/src/com/earth2me/essentials/commands/Commandlist.java
@@ -73,7 +73,7 @@ public class Commandlist extends EssentialsCommand
{
continue;
}
- final String group = onlineUser.getGroup().toLowerCase();
+ final String group = Util.stripFormat(onlineUser.getGroup().toLowerCase());
List<User> list = playerList.get(group);
if (list == null)
{