aboutsummaryrefslogtreecommitdiff
path: root/src
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
parent412247a118989697333d729a2630105a23760e2e (diff)
downloadresurrection-3ed4e546b3c9c67b38b24e930e90bbef996c1ca4.tar
resurrection-3ed4e546b3c9c67b38b24e930e90bbef996c1ca4.tar.gz
resurrection-3ed4e546b3c9c67b38b24e930e90bbef996c1ca4.tar.bz2
fixed message ocd
Diffstat (limited to 'src')
-rw-r--r--src/net/brysonsteck/Resurrection/commands/CommandAbout.java2
-rw-r--r--src/net/brysonsteck/Resurrection/commands/CommandHowLong.java4
-rw-r--r--src/net/brysonsteck/Resurrection/commands/CommandResurrect.java4
3 files changed, 5 insertions, 5 deletions
diff --git a/src/net/brysonsteck/Resurrection/commands/CommandAbout.java b/src/net/brysonsteck/Resurrection/commands/CommandAbout.java
index 284d0f5..3d16878 100644
--- a/src/net/brysonsteck/Resurrection/commands/CommandAbout.java
+++ b/src/net/brysonsteck/Resurrection/commands/CommandAbout.java
@@ -42,7 +42,7 @@ public class CommandAbout implements CommandExecutor {
System.out.println("[Resurrection]");
System.out.println("[Resurrection] This plugin is licensed under the GNU Affero General Public License v3.0. For more info, run /source");
System.out.println("[Resurrection] Since you're the admin, you probably know where to download it lmao. Here's the link anyway: https://github.com/brysonsteck/resurrection");
- System.out.println("[Resurrection] \u00a9 2021 Bryson Steck");
+ System.out.println("[Resurrection] Copyright 2021 Bryson Steck");
}
return true;
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;
}
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 {