From 993afa8280da880646ad597739c9627fcb34d06c Mon Sep 17 00:00:00 2001 From: Bryson Steck Date: Wed, 21 Jul 2021 21:42:35 -0600 Subject: fixed location grabber --- out/artifacts/Resurrection_jar/Resurrection.jar | Bin 1352768 -> 1352698 bytes .../Resurrection/player/PlayerListener.java | 8 ++++---- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/out/artifacts/Resurrection_jar/Resurrection.jar b/out/artifacts/Resurrection_jar/Resurrection.jar index 4cc2436..057d7c0 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 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 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); } } } -- cgit v1.2.3