diff options
Diffstat (limited to 'src/net/brysonsteck/Resurrection/commands')
-rw-r--r-- | src/net/brysonsteck/Resurrection/commands/CommandDead.java | 2 | ||||
-rw-r--r-- | src/net/brysonsteck/Resurrection/commands/CommandResurrect.java | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/src/net/brysonsteck/Resurrection/commands/CommandDead.java b/src/net/brysonsteck/Resurrection/commands/CommandDead.java index dd23174..96fe736 100644 --- a/src/net/brysonsteck/Resurrection/commands/CommandDead.java +++ b/src/net/brysonsteck/Resurrection/commands/CommandDead.java @@ -25,7 +25,7 @@ public class CommandDead implements CommandExecutor { public boolean onCommand(CommandSender commandSender, Command command, String s, String[] strings) { Logger log = JavaPlugin.getProvidingPlugin(Resurrection.class).getLogger(); if (DEBUG) { - Bukkit.broadcastMessage(ChatColor.YELLOW +""+ ChatColor.BOLD + "[Res. DEBUG]: The `/about` command was ran by " + commandSender.getName()); + Bukkit.broadcastMessage(ChatColor.YELLOW +""+ ChatColor.BOLD + "[Res. DEBUG]: The `/dead` command was ran by " + commandSender.getName()); } PlayerData playerData = new PlayerData(); diff --git a/src/net/brysonsteck/Resurrection/commands/CommandResurrect.java b/src/net/brysonsteck/Resurrection/commands/CommandResurrect.java index e26575c..0715046 100644 --- a/src/net/brysonsteck/Resurrection/commands/CommandResurrect.java +++ b/src/net/brysonsteck/Resurrection/commands/CommandResurrect.java @@ -64,7 +64,7 @@ public class CommandResurrect implements CommandExecutor { // for versions > 1.8 player.playSound(player.getLocation(), Sound.ENTITY_WITHER_DEATH, 1, 0); // for version 1.8 - //player.playSound(player.getLocation(), Sound.WITHER_DEATH, 1, 0); + // player.playSound(player.getLocation(), Sound.WITHER_DEATH, 1, 0); } Bukkit.broadcastMessage(ChatColor.YELLOW +""+ ChatColor.BOLD + strings[0] + " has been resurrected manually by an admin!"); removeDeath(resurrectPlayer); @@ -114,7 +114,7 @@ public class CommandResurrect implements CommandExecutor { // for versions > 1.8 player.playSound(player.getLocation(), Sound.ENTITY_WITHER_DEATH, 1, 0); // for version 1.8 - //player.playSound(player.getLocation(), Sound.WITHER_DEATH, 1, 0); + // player.playSound(player.getLocation(), Sound.WITHER_DEATH, 1, 0); } Bukkit.broadcastMessage(strings[0] + " has been resurrected manually by an admin!"); removeDeath(resurrectPlayer); |