diff options
author | Bryson Steck <steck.bryson@gmail.com> | 2021-07-21 21:42:35 -0600 |
---|---|---|
committer | Bryson Steck <steck.bryson@gmail.com> | 2021-07-21 21:42:35 -0600 |
commit | 993afa8280da880646ad597739c9627fcb34d06c (patch) | |
tree | 49aafa99071f4dbefd3de86a1d8349fe371f5503 /src/net/brysonsteck/Resurrection/player | |
parent | 176eb6df74e3ce8c93e6b4944f84807363b2ad30 (diff) | |
download | resurrection-993afa8280da880646ad597739c9627fcb34d06c.tar resurrection-993afa8280da880646ad597739c9627fcb34d06c.tar.gz resurrection-993afa8280da880646ad597739c9627fcb34d06c.tar.bz2 |
fixed location grabber
Diffstat (limited to 'src/net/brysonsteck/Resurrection/player')
-rw-r--r-- | src/net/brysonsteck/Resurrection/player/PlayerListener.java | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/net/brysonsteck/Resurrection/player/PlayerListener.java b/src/net/brysonsteck/Resurrection/player/PlayerListener.java index 4dc4a06..9bbc244 100644 --- a/src/net/brysonsteck/Resurrection/player/PlayerListener.java +++ b/src/net/brysonsteck/Resurrection/player/PlayerListener.java @@ -22,7 +22,7 @@ public class PlayerListener implements Listener { boolean stillDead; boolean timerRunning = false; World world = Bukkit.getWorlds().get(0); - Location spawn; + Location spawn = world.getSpawnLocation(); Hashtable<String, Location> playerSpawns = new Hashtable<>(); public PlayerListener() { @@ -79,7 +79,7 @@ public class PlayerListener implements Listener { playerData.saveData(rawData + ";" + p.getDisplayName() + ",false,0"); } if (resumeDeath && !timerRunning) { - spawn = p.getLocation(); +// spawn = p.getLocation(); p.sendMessage(ChatColor.RED + "You are still dead. To check how long you have left before you are resurrected, " + "run \"howlong\" in chat."); new BukkitRunnable() { @@ -201,7 +201,7 @@ public class PlayerListener implements Listener { new BukkitRunnable() { @Override public void run() { - spawn = p.getLocation(); +// spawn = p.getLocation(); // PotionEffect invisibility = new PotionEffect(PotionEffectType.INVISIBILITY, 1728000, 10, false); PotionEffect blindness = new PotionEffect(PotionEffectType.BLINDNESS, 999999999, 10, false); PotionEffect slowness = new PotionEffect(PotionEffectType.SLOW, 999999999, 10, false); @@ -217,7 +217,7 @@ public class PlayerListener implements Listener { public void onPlayerMove(PlayerMoveEvent e) { Player p = e.getPlayer(); if (p.getGameMode() == GameMode.SPECTATOR) { - p.teleport(playerSpawns.get(p.getDisplayName())); + p.teleport(spawn); } } } |