From f822aae015b34b6ce68415c482a842d9c081a4b2 Mon Sep 17 00:00:00 2001 From: Aust1n46 Date: Sat, 7 Mar 2020 00:21:18 -0500 Subject: [PATCH] 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. --- .../mineverse/Aust1n46/chat/command/message/Ignore.java | 3 +++ 1 file changed, 3 insertions(+) diff --git a/MineverseChat/mineverse/Aust1n46/chat/command/message/Ignore.java b/MineverseChat/mineverse/Aust1n46/chat/command/message/Ignore.java index eac9966..a596176 100644 --- a/MineverseChat/mineverse/Aust1n46/chat/command/message/Ignore.java +++ b/MineverseChat/mineverse/Aust1n46/chat/command/message/Ignore.java @@ -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) {