Finally finished first wave of bugfixing #35
1 changed files with 13 additions and 6 deletions
|
@ -31,14 +31,21 @@ public class PlayerProximityLoop extends BukkitRunnable implements Listener{
|
|||
PlayerProximityLoop.sY = location.getBlockY();
|
||||
PlayerProximityLoop.sZ = location.getBlockZ();
|
||||
PlayerProximityLoop.startLocation = location;
|
||||
PlayerProximityLoop.endLocation.setWorld(location.getWorld());
|
||||
|
||||
if (endLocation == null)
|
||||
PlayerProximityLoop.endLocation = location;
|
||||
else
|
||||
PlayerProximityLoop.endLocation.setWorld(location.getWorld());
|
||||
}
|
||||
public static void setEndLocation(Location location){
|
||||
PlayerProximityLoop.eX = location.getBlockX();
|
||||
PlayerProximityLoop.eY = location.getBlockY();
|
||||
PlayerProximityLoop.eZ = location.getBlockZ();
|
||||
PlayerProximityLoop.startLocation.setWorld(location.getWorld());
|
||||
PlayerProximityLoop.endLocation = location;
|
||||
if (endLocation == null)
|
||||
PlayerProximityLoop.endLocation = location;
|
||||
else
|
||||
PlayerProximityLoop.endLocation.setWorld(location.getWorld());
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
Loading…
Reference in a new issue