diff options
author | Bryson Steck <steck.bryson@gmail.com> | 2021-08-25 00:41:04 -0600 |
---|---|---|
committer | Bryson Steck <steck.bryson@gmail.com> | 2021-08-25 00:41:04 -0600 |
commit | 3ed4e546b3c9c67b38b24e930e90bbef996c1ca4 (patch) | |
tree | 1cbd80ac131d5b6551f90a663c91cc0c94291a8f /src/net/brysonsteck/Resurrection/commands/CommandHowLong.java | |
parent | 412247a118989697333d729a2630105a23760e2e (diff) | |
download | resurrection-3ed4e546b3c9c67b38b24e930e90bbef996c1ca4.tar resurrection-3ed4e546b3c9c67b38b24e930e90bbef996c1ca4.tar.gz resurrection-3ed4e546b3c9c67b38b24e930e90bbef996c1ca4.tar.bz2 |
fixed message ocd
Diffstat (limited to 'src/net/brysonsteck/Resurrection/commands/CommandHowLong.java')
-rw-r--r-- | src/net/brysonsteck/Resurrection/commands/CommandHowLong.java | 4 |
1 files changed, 2 insertions, 2 deletions
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; } |