aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--out/artifacts/Resurrection_jar/Resurrection.jarbin1352906 -> 1352592 bytes
-rw-r--r--src/net/brysonsteck/Resurrection/player/PlayerListener.java19
2 files changed, 1 insertions, 18 deletions
diff --git a/out/artifacts/Resurrection_jar/Resurrection.jar b/out/artifacts/Resurrection_jar/Resurrection.jar
index 690e82e..772ecf0 100644
--- a/out/artifacts/Resurrection_jar/Resurrection.jar
+++ b/out/artifacts/Resurrection_jar/Resurrection.jar
Binary files differ
diff --git a/src/net/brysonsteck/Resurrection/player/PlayerListener.java b/src/net/brysonsteck/Resurrection/player/PlayerListener.java
index d638347..749d6b6 100644
--- a/src/net/brysonsteck/Resurrection/player/PlayerListener.java
+++ b/src/net/brysonsteck/Resurrection/player/PlayerListener.java
@@ -25,22 +25,6 @@ public class PlayerListener implements Listener {
Location spawn = world.getSpawnLocation();
Hashtable<String, Location> playerSpawns = new Hashtable<>();
- public PlayerListener() {
- double newY = 46;
- while(true) {
- Location testLocation = new Location (world, 0, newY, 0);
- Block block = testLocation.getBlock();
- if (block.getType() == Material.AIR) {
- newY++;
- System.out.println("The spawn block at X0 Z0 is Y" + newY);
-// spawn = testLocation;
- break;
- } else {
- newY++;
- }
- }
- }
-
@EventHandler
public void onJoin(PlayerJoinEvent e) {
Player p = e.getPlayer();
@@ -90,7 +74,7 @@ public class PlayerListener implements Listener {
PotionEffect slowness = new PotionEffect(PotionEffectType.SLOW, 999999999, 10, false);
blindness.apply(p);
slowness.apply(p);
- // convert to seconds and to ticks
+ p.teleport(spawn);
}
}.runTaskLater(JavaPlugin.getProvidingPlugin(Resurrection.class), 1);
resurrectTime = resurrectTime - System.currentTimeMillis();
@@ -211,7 +195,6 @@ public class PlayerListener implements Listener {
// invisibility.apply(p);
blindness.apply(p);
slowness.apply(p);
- p.teleport(spawn);
}
}.runTaskLater(JavaPlugin.getProvidingPlugin(Resurrection.class), 1);
}