aboutsummaryrefslogtreecommitdiff
path: root/src/net/brysonsteck/Resurrection/commands/CommandResurrect.java
diff options
context:
space:
mode:
authorBryson Steck <steck.bryson@gmail.com>2022-01-05 14:17:01 -0700
committerBryson Steck <steck.bryson@gmail.com>2022-01-05 14:17:01 -0700
commit908cd6297c2be25db181ff47ad27549882636af4 (patch)
treeeda499832022329e113966fe7c0a40fe3017ac1a /src/net/brysonsteck/Resurrection/commands/CommandResurrect.java
parent7ab8389f0f2c61056fccbe827a105413300c0789 (diff)
downloadresurrection-908cd6297c2be25db181ff47ad27549882636af4.tar
resurrection-908cd6297c2be25db181ff47ad27549882636af4.tar.gz
resurrection-908cd6297c2be25db181ff47ad27549882636af4.tar.bz2
figuring out api stuff for recent minecraft releases
Diffstat (limited to 'src/net/brysonsteck/Resurrection/commands/CommandResurrect.java')
-rw-r--r--src/net/brysonsteck/Resurrection/commands/CommandResurrect.java14
1 files changed, 12 insertions, 2 deletions
diff --git a/src/net/brysonsteck/Resurrection/commands/CommandResurrect.java b/src/net/brysonsteck/Resurrection/commands/CommandResurrect.java
index a2301b3..a026d31 100644
--- a/src/net/brysonsteck/Resurrection/commands/CommandResurrect.java
+++ b/src/net/brysonsteck/Resurrection/commands/CommandResurrect.java
@@ -61,7 +61,12 @@ public class CommandResurrect implements CommandExecutor {
resurrectPlayer.removePotionEffect(effect.getType());
resurrectPlayer.setGameMode(GameMode.SURVIVAL);
for(Player player : Bukkit.getOnlinePlayers()){
- player.playSound(player.getLocation(), Sound.ENTITY_ENDER_DRAGON_GROWL, 1, 0);
+ try {
+ player.playSound(player.getLocation(), Sound.ENTITY_ENDER_DRAGON_GROWL, 1, 0);
+ } catch (NoSuchFieldError e) {
+ log.warning("NoSuchFieldError encountered, playing Wither noise instead.");
+ player.playSound(player.getLocation(), Sound.ENTITY_WITHER_DEATH, 1, 0);
+ }
}
Bukkit.broadcastMessage(ChatColor.YELLOW +""+ ChatColor.BOLD + strings[0] + " has been resurrected manually by an admin!");
removeDeath(resurrectPlayer);
@@ -108,7 +113,12 @@ public class CommandResurrect implements CommandExecutor {
resurrectPlayer.removePotionEffect(effect.getType());
resurrectPlayer.setGameMode(GameMode.SURVIVAL);
for(Player player : Bukkit.getOnlinePlayers()){
- player.playSound(player.getLocation(), Sound.ENTITY_ENDER_DRAGON_GROWL, 1, 0);
+ try {
+ player.playSound(player.getLocation(), Sound.ENTITY_ENDER_DRAGON_GROWL, 1, 0);
+ } catch (NoSuchFieldError e) {
+ log.warning("NoSuchFieldError encountered, playing Wither noise instead.");
+ player.playSound(player.getLocation(), Sound.ENTITY_WITHER_DEATH, 1, 0);
+ }
}
Bukkit.broadcastMessage(strings[0] + " has been resurrected manually by an admin!");
removeDeath(resurrectPlayer);