Visibility changes.

This commit is contained in:
MobiusDev
2016-01-29 14:13:33 +00:00
parent 6e536fc2dd
commit 13507ad46c
298 changed files with 563 additions and 595 deletions

View File

@@ -42,7 +42,7 @@ import com.l2jmobius.gameserver.network.serverpackets.SystemMessage;
public abstract class AirShipController extends Quest
{
protected final class DecayTask implements Runnable
final class DecayTask implements Runnable
{
@Override
public void run()
@@ -54,7 +54,7 @@ public abstract class AirShipController extends Quest
}
}
protected final class DepartTask implements Runnable
final class DepartTask implements Runnable
{
@Override
public void run()
@@ -73,14 +73,14 @@ public abstract class AirShipController extends Quest
}
}
public static final Logger _log = Logger.getLogger(AirShipController.class.getName());
private static final Logger _log = Logger.getLogger(AirShipController.class.getName());
protected int _dockZone = 0;
protected int _shipSpawnX = 0;
protected int _shipSpawnY = 0;
protected int _shipSpawnZ = 0;
protected int _shipHeading = 0;
private final int _shipHeading = 0;
protected Location _oustLoc = null;
protected int _locationId = 0;
@@ -93,8 +93,8 @@ public abstract class AirShipController extends Quest
protected int _movieId = 0;
protected boolean _isBusy = false;
protected L2ControllableAirShipInstance _dockedShip = null;
private boolean _isBusy = false;
L2ControllableAirShipInstance _dockedShip = null;
private final Runnable _decayTask = new DecayTask();
private final Runnable _departTask = new DepartTask();