1
0
mirror of https://github.com/essentials/Essentials.git synced 2025-08-19 13:01:20 +02:00

Merge pull request #423 from kukelekuuk00/patch-1

[Fix] Strip colourcodes from groups in /list (internal only)
This commit is contained in:
KHobbits
2013-03-28 19:50:50 -07:00

View File

@@ -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)
{