mirror of
https://github.com/EssentialsX/Essentials.git
synced 2024-11-19 17:15:16 +01:00
Fix group name when using wildcard group definitions.
This commit is contained in:
parent
55e8aa765b
commit
3356db080a
@ -148,7 +148,7 @@ public class Commandlist extends EssentialsCommand
|
||||
// If the group value is an asterisk, then skip it, and handle it later
|
||||
if (groupValue.equals("*"))
|
||||
{
|
||||
asterisk.add(configGroup);
|
||||
asterisk.add(oConfigGroup);
|
||||
continue;
|
||||
}
|
||||
|
||||
@ -215,16 +215,17 @@ public class Commandlist extends EssentialsCommand
|
||||
for (String onlineGroup : onlineGroups)
|
||||
{
|
||||
List<User> users = playerList.get(onlineGroup);
|
||||
String groupName = asterisk.isEmpty() ? users.get(0).getGroup() : onlineGroup;
|
||||
|
||||
if (ess.getPermissionsHandler().getName().equals("ConfigPermissions"))
|
||||
{
|
||||
onlineGroup = _("connectedPlayers");
|
||||
groupName = _("connectedPlayers");
|
||||
}
|
||||
if (users == null || users.isEmpty())
|
||||
{
|
||||
continue;
|
||||
}
|
||||
String groupName = users.get(0).getGroup();
|
||||
|
||||
sender.sendMessage(outputFormat(groupName, listUsers(users)));
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user