aboutsummaryrefslogtreecommitdiff
path: root/src/net/brysonsteck/Resurrection/commands/CommandResurrect.java
diff options
context:
space:
mode:
authorBryson Steck <steck.bryson@gmail.com>2021-08-25 00:41:04 -0600
committerBryson Steck <steck.bryson@gmail.com>2021-08-25 00:41:04 -0600
commit3ed4e546b3c9c67b38b24e930e90bbef996c1ca4 (patch)
tree1cbd80ac131d5b6551f90a663c91cc0c94291a8f /src/net/brysonsteck/Resurrection/commands/CommandResurrect.java
parent412247a118989697333d729a2630105a23760e2e (diff)
downloadresurrection-3ed4e546b3c9c67b38b24e930e90bbef996c1ca4.tar
resurrection-3ed4e546b3c9c67b38b24e930e90bbef996c1ca4.tar.gz
resurrection-3ed4e546b3c9c67b38b24e930e90bbef996c1ca4.tar.bz2
fixed message ocd
Diffstat (limited to 'src/net/brysonsteck/Resurrection/commands/CommandResurrect.java')
-rw-r--r--src/net/brysonsteck/Resurrection/commands/CommandResurrect.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/net/brysonsteck/Resurrection/commands/CommandResurrect.java b/src/net/brysonsteck/Resurrection/commands/CommandResurrect.java
index 45ed156..106cb71 100644
--- a/src/net/brysonsteck/Resurrection/commands/CommandResurrect.java
+++ b/src/net/brysonsteck/Resurrection/commands/CommandResurrect.java
@@ -49,7 +49,7 @@ public class CommandResurrect implements CommandExecutor {
if (valid) {
Player resurrectPlayer = Bukkit.getPlayer(strings[0]);
if (resurrectPlayer == null) {
- System.out.println("[Resurrection] That player is not online/doesn't exist! Failed to resurrect.");
+ System.out.println("[Resurrection] ERROR: That player is not online/doesn't exist! Failed to resurrect.");
return false;
}
if (resurrectPlayer.getGameMode() == GameMode.SPECTATOR) {
@@ -66,7 +66,7 @@ public class CommandResurrect implements CommandExecutor {
}
return true;
} else {
- System.out.println("[Resurrection] " + strings[0] + " is not dead! Failed to resurrect.");
+ System.out.println("[Resurrection] ERROR: " + strings[0] + " is not dead! Failed to resurrect.");
return false;
}
} else {