summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKHobbits <rob@khobbits.co.uk>2014-01-14 21:55:30 +0000
committerKHobbits <rob@khobbits.co.uk>2014-01-14 21:55:30 +0000
commit7385d9ce56a91502670155f027c6b4d6c7f103fd (patch)
treec3bf17c3f0484cd626b61a7e1cef5abc3a5b9fdc
parent0ce2e875137b6b38b6e15eb9aed041abd7004b3f (diff)
downloadEssentials-7385d9ce56a91502670155f027c6b4d6c7f103fd.tar
Essentials-7385d9ce56a91502670155f027c6b4d6c7f103fd.tar.gz
Essentials-7385d9ce56a91502670155f027c6b4d6c7f103fd.tar.lz
Essentials-7385d9ce56a91502670155f027c6b4d6c7f103fd.tar.xz
Essentials-7385d9ce56a91502670155f027c6b4d6c7f103fd.zip
Fix hidden groups in /list
-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 c9bc864cf..0e3620a34 100644
--- a/Essentials/src/com/earth2me/essentials/commands/Commandlist.java
+++ b/Essentials/src/com/earth2me/essentials/commands/Commandlist.java
@@ -60,7 +60,7 @@ public class Commandlist extends EssentialsCommand
// If the group value is hidden, we don't need to display it
if (groupValue.equalsIgnoreCase("hidden"))
{
- playerList.remove(groupValue);
+ playerList.remove(configGroup);
continue;
}