aboutsummaryrefslogtreecommitdiff
path: root/src/net/brysonsteck/Resurrection/commands/CommandResurrect.java
diff options
context:
space:
mode:
authorBryson Steck <steck.bryson@gmail.com>2022-01-15 16:19:03 -0700
committerBryson Steck <steck.bryson@gmail.com>2022-01-15 16:19:03 -0700
commitdddb321c70ce2ac3b781e5f39eded8fb5fb1ff14 (patch)
treed1766697c4f777399d4675c8670d1c6bd200af1e /src/net/brysonsteck/Resurrection/commands/CommandResurrect.java
parent0188e381b25764c4d849c453d41683144d4307cc (diff)
downloadresurrection-dddb321c70ce2ac3b781e5f39eded8fb5fb1ff14.tar
resurrection-dddb321c70ce2ac3b781e5f39eded8fb5fb1ff14.tar.gz
resurrection-dddb321c70ce2ac3b781e5f39eded8fb5fb1ff14.tar.bz2
found the solution, preparing for v1.3
Diffstat (limited to 'src/net/brysonsteck/Resurrection/commands/CommandResurrect.java')
-rw-r--r--src/net/brysonsteck/Resurrection/commands/CommandResurrect.java20
1 files changed, 8 insertions, 12 deletions
diff --git a/src/net/brysonsteck/Resurrection/commands/CommandResurrect.java b/src/net/brysonsteck/Resurrection/commands/CommandResurrect.java
index 371e3c1..e26575c 100644
--- a/src/net/brysonsteck/Resurrection/commands/CommandResurrect.java
+++ b/src/net/brysonsteck/Resurrection/commands/CommandResurrect.java
@@ -61,12 +61,10 @@ public class CommandResurrect implements CommandExecutor {
resurrectPlayer.removePotionEffect(effect.getType());
resurrectPlayer.setGameMode(GameMode.SURVIVAL);
for(Player player : Bukkit.getOnlinePlayers()){
- try {
- player.playSound(player.getLocation(), Sound.ENTITY_ENDERDRAGON_GROWL, 1, 0);
- } catch (NoSuchFieldError e) {
- log.warning("NoSuchFieldError encountered, playing Wither noise instead.");
- player.playSound(player.getLocation(), Sound.WITHER_DEATH, 1, 0);
- }
+ // 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);
}
Bukkit.broadcastMessage(ChatColor.YELLOW +""+ ChatColor.BOLD + strings[0] + " has been resurrected manually by an admin!");
removeDeath(resurrectPlayer);
@@ -113,12 +111,10 @@ public class CommandResurrect implements CommandExecutor {
resurrectPlayer.removePotionEffect(effect.getType());
resurrectPlayer.setGameMode(GameMode.SURVIVAL);
for(Player player : Bukkit.getOnlinePlayers()){
- try {
- player.playSound(player.getLocation(), Sound.ENTITY_ENDERDRAGON_GROWL, 1, 0);
- } catch (NoSuchFieldError e) {
- log.warning("NoSuchFieldError encountered, playing Wither noise instead.");
- player.playSound(player.getLocation(), Sound.WITHER_DEATH, 1, 0);
- }
+ // 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);
}
Bukkit.broadcastMessage(strings[0] + " has been resurrected manually by an admin!");
removeDeath(resurrectPlayer);