From 9484cb4152976afc2acb3e9102873266fd5cb09d Mon Sep 17 00:00:00 2001 From: Bryson Steck Date: Mon, 29 Nov 2021 13:24:25 -0700 Subject: added prefix and changed sound --- out/artifacts/Resurrection_jar/Resurrection.jar | Bin 1605881 -> 1605889 bytes .../Resurrection/player/PlayerListener.java | 12 ++++++------ src/net/brysonsteck/Resurrection/plugin.yml | 1 + 3 files changed, 7 insertions(+), 6 deletions(-) diff --git a/out/artifacts/Resurrection_jar/Resurrection.jar b/out/artifacts/Resurrection_jar/Resurrection.jar index 5480e21..8beee52 100644 Binary files a/out/artifacts/Resurrection_jar/Resurrection.jar and b/out/artifacts/Resurrection_jar/Resurrection.jar differ diff --git a/src/net/brysonsteck/Resurrection/player/PlayerListener.java b/src/net/brysonsteck/Resurrection/player/PlayerListener.java index b33a32d..5135357 100644 --- a/src/net/brysonsteck/Resurrection/player/PlayerListener.java +++ b/src/net/brysonsteck/Resurrection/player/PlayerListener.java @@ -130,15 +130,15 @@ public class PlayerListener implements Listener { for (PotionEffect effect : p.getActivePotionEffects()) p.removePotionEffect(effect.getType()); p.setGameMode(GameMode.SURVIVAL); - for(Player p : Bukkit.getOnlinePlayers()){ - p.playSound(p.getLocation(), Sound.ENTITY_ENDER_DRAGON_GROWL, 1, 0); - } Bukkit.broadcastMessage(ChatColor.YELLOW +""+ ChatColor.BOLD + p.getDisplayName() + " has resurrected!"); if (p.getBedSpawnLocation() != null) { p.teleport(p.getBedSpawnLocation()); } else { p.teleport(spawn); } + for(Player p : Bukkit.getOnlinePlayers()){ + p.playSound(p.getLocation(), Sound.ENTITY_ENDER_DRAGON_GROWL, 1, 0); + } } }.runTaskLater(JavaPlugin.getProvidingPlugin(Resurrection.class), timeToResurrection); @@ -221,15 +221,15 @@ public class PlayerListener implements Listener { for (PotionEffect effect : p.getActivePotionEffects()) p.removePotionEffect(effect.getType()); p.setGameMode(GameMode.SURVIVAL); - for(Player p : Bukkit.getOnlinePlayers()){ - p.playSound(p.getLocation(), Sound.ENTITY_ENDER_DRAGON_GROWL, 1, 0); - } Bukkit.broadcastMessage(ChatColor.YELLOW +""+ ChatColor.BOLD + p.getDisplayName() + " has resurrected!"); if (p.getBedSpawnLocation() != null) { p.teleport(p.getBedSpawnLocation()); } else { p.teleport(spawn); } + for(Player p : Bukkit.getOnlinePlayers()){ + p.playSound(p.getLocation(), Sound.ENTITY_ENDER_DRAGON_GROWL, 1, 0); + } } }.runTaskLater(JavaPlugin.getProvidingPlugin(Resurrection.class), timeToResurrection); diff --git a/src/net/brysonsteck/Resurrection/plugin.yml b/src/net/brysonsteck/Resurrection/plugin.yml index b436e22..5658ae7 100644 --- a/src/net/brysonsteck/Resurrection/plugin.yml +++ b/src/net/brysonsteck/Resurrection/plugin.yml @@ -5,6 +5,7 @@ version: '1.1.1' website: https://brysonsteck.net/resurrection.html description: Makes players wait large amounts of time before respawning! database: false +prefix: Resurrection commands: about: -- cgit v1.2.3