Added UUID to print out in the ignore list in the rare case that the

ignored player has never played on the server where the command executer
is playing.
This commit is contained in:
Aust1n46 2020-03-07 00:21:18 -05:00
parent d77da1c3e4
commit f822aae015

View File

@ -39,6 +39,9 @@ public class Ignore extends MineverseCommand {
if(i != null) {
ignoreList += ChatColor.RED + i.getName() + ChatColor.WHITE + ", ";
}
else {
ignoreList += ChatColor.RED + ignore.toString() + ChatColor.WHITE + ", ";
}
}
mcp.getPlayer().sendMessage(ChatColor.GOLD + "You are currently ignoring these players:");
if(ignoreList.length() > 0) {