aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBryson Steck <steck.bryson@gmail.com>2021-06-15 20:28:09 -0600
committerBryson Steck <steck.bryson@gmail.com>2021-06-15 20:28:09 -0600
commita06e712bf4178f2db3fb7de56f894ebfb6c922f8 (patch)
treeda7b55fef6b1bca10ea6a714d2e6269d091eb4cb
parent55fe6d900138477d3cd63b0d36b2219761546724 (diff)
downloadresurrection-a06e712bf4178f2db3fb7de56f894ebfb6c922f8.tar
resurrection-a06e712bf4178f2db3fb7de56f894ebfb6c922f8.tar.gz
resurrection-a06e712bf4178f2db3fb7de56f894ebfb6c922f8.tar.bz2
trying bedspawn
-rw-r--r--out/artifacts/Resurrection_jar/Resurrection.jarbin1338965 -> 1338970 bytes
-rw-r--r--out/production/Resurrection/net/brysonsteck/Resurrection/player/PlayerListener.classbin2622 -> 2630 bytes
-rw-r--r--src/net/brysonsteck/Resurrection/player/PlayerListener.java4
3 files changed, 2 insertions, 2 deletions
diff --git a/out/artifacts/Resurrection_jar/Resurrection.jar b/out/artifacts/Resurrection_jar/Resurrection.jar
index 3ad7ce5..94ad8b6 100644
--- a/out/artifacts/Resurrection_jar/Resurrection.jar
+++ b/out/artifacts/Resurrection_jar/Resurrection.jar
Binary files differ
diff --git a/out/production/Resurrection/net/brysonsteck/Resurrection/player/PlayerListener.class b/out/production/Resurrection/net/brysonsteck/Resurrection/player/PlayerListener.class
index e05d51b..c3089ab 100644
--- a/out/production/Resurrection/net/brysonsteck/Resurrection/player/PlayerListener.class
+++ b/out/production/Resurrection/net/brysonsteck/Resurrection/player/PlayerListener.class
Binary files differ
diff --git a/src/net/brysonsteck/Resurrection/player/PlayerListener.java b/src/net/brysonsteck/Resurrection/player/PlayerListener.java
index a84fa80..b23b7ae 100644
--- a/src/net/brysonsteck/Resurrection/player/PlayerListener.java
+++ b/src/net/brysonsteck/Resurrection/player/PlayerListener.java
@@ -49,7 +49,7 @@ public class PlayerListener implements Listener {
public void onPlayerRespawn(PlayerRespawnEvent e) {
final Player p = e.getPlayer();
p.setGameMode(GameMode.SPECTATOR);
- spawn = p.getLocation();
+ this.spawn = p.getBedSpawnLocation();
new BukkitRunnable() {
@Override
public void run() {
@@ -67,7 +67,7 @@ public class PlayerListener implements Listener {
public void onPlayerMove(PlayerMoveEvent e) {
Player p = e.getPlayer();
if (p.getGameMode() == GameMode.SPECTATOR) {
- p.teleport(spawn);
+ p.teleport(this.spawn);
}
}
}