From 3ed4e546b3c9c67b38b24e930e90bbef996c1ca4 Mon Sep 17 00:00:00 2001 From: Bryson Steck Date: Wed, 25 Aug 2021 00:41:04 -0600 Subject: fixed message ocd --- src/net/brysonsteck/Resurrection/commands/CommandHowLong.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/net/brysonsteck/Resurrection/commands/CommandHowLong.java') diff --git a/src/net/brysonsteck/Resurrection/commands/CommandHowLong.java b/src/net/brysonsteck/Resurrection/commands/CommandHowLong.java index 9569c27..f36987a 100644 --- a/src/net/brysonsteck/Resurrection/commands/CommandHowLong.java +++ b/src/net/brysonsteck/Resurrection/commands/CommandHowLong.java @@ -31,7 +31,7 @@ public class CommandHowLong implements CommandExecutor { } else { p = Bukkit.getPlayer(strings[0]); if (p == null) { - commandSender.sendMessage(ChatColor.RED + "ERROR: Player does not exist or is offline!"); + commandSender.sendMessage(ChatColor.RED + "ERROR: That player is not online/doesn't exist!"); return false; } } @@ -80,7 +80,7 @@ public class CommandHowLong implements CommandExecutor { Player p = Bukkit.getPlayer(strings[0]); if (p == null) { - System.out.println(ChatColor.RED + "[Resurrection] ERROR: Player does not exist or is offline!"); + System.out.println("[Resurrection] ERROR: That player is not online/doesn't exist!"); return false; } -- cgit v1.2.3