Commit ba97dfe7 authored by coooookies's avatar coooookies
Browse files

Uids will not be showed until the parameter <uid> is added,

like this: /list uid
parent c0b7859f
......@@ -8,29 +8,41 @@ import emu.grasscutter.game.player.Player;
import java.util.List;
import java.util.Map;
@Command(label = "list", description = "List online players")
@Command(label = "list", usage = "list [uid]",
description = "List online players", aliases = {"players"})
public final class ListCommand implements CommandHandler {
@Override
public void execute(Player sender, List<String> args) {
Map<Integer, Player> playersMap = Grasscutter.getGameServer().getPlayers();
boolean needUID = false;
if (args.size() > 0) {
needUID = args.get(0).equals("uid");
}
CommandHandler.sendMessage(sender, String.format("There are %s player(s) online:", playersMap.size()));
if (playersMap.size() != 0) {
StringBuilder playerSet = new StringBuilder();
boolean finalNeedUID = needUID;
playersMap.values().forEach(player -> {
playerSet.append(player.getNickname());
if (sender != null) {
playerSet.append("<color=green><UID:")
.append(player.getUid())
.append("></color>, ");
} else {
playerSet.append("<UID:")
.append(player.getUid())
.append(">, ");
if (finalNeedUID) {
if (sender != null) {
playerSet.append("<color=green><UID:")
.append(player.getUid())
.append("></color>");
} else {
playerSet.append("<UID:")
.append(player.getUid())
.append(">");
}
}
playerSet.append(", ");
});
String players = playerSet.toString();
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment