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