mirror of
https://github.com/Aust1n46/VentureChat.git
synced 2025-05-23 10:39:05 +00:00
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:
parent
d77da1c3e4
commit
f822aae015
@ -39,6 +39,9 @@ public class Ignore extends MineverseCommand {
|
|||||||
if(i != null) {
|
if(i != null) {
|
||||||
ignoreList += ChatColor.RED + i.getName() + ChatColor.WHITE + ", ";
|
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:");
|
mcp.getPlayer().sendMessage(ChatColor.GOLD + "You are currently ignoring these players:");
|
||||||
if(ignoreList.length() > 0) {
|
if(ignoreList.length() > 0) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user