From 783273fadd17aa89eda921f2ab8e223506140a44 Mon Sep 17 00:00:00 2001 From: Bryson Steck Date: Wed, 21 Jul 2021 21:54:56 -0600 Subject: removed constructer, spawn works --- .../Resurrection/player/PlayerListener.java | 19 +------------------ 1 file changed, 1 insertion(+), 18 deletions(-) (limited to 'src/net/brysonsteck/Resurrection/player') 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 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); } -- cgit v1.2.3