Sync with L2jServer HighFive Mar 1st 2015.

This commit is contained in:
mobius
2015-03-01 22:48:14 +00:00
parent f14af24b41
commit 6fa0ed56e3
116 changed files with 971 additions and 676 deletions

View File

@@ -29,9 +29,9 @@ import com.l2jserver.gameserver.network.serverpackets.ExStopMoveAirShip;
*/
public class L2AirShipAI extends L2VehicleAI
{
public L2AirShipAI(L2AirShipInstance.AIAccessor accessor)
public L2AirShipAI(L2AirShipInstance creature)
{
super(accessor);
super(creature);
}
@Override
@@ -40,7 +40,7 @@ public class L2AirShipAI extends L2VehicleAI
if (!_actor.isMovementDisabled())
{
_clientMoving = true;
_accessor.moveTo(x, y, z);
_actor.moveToLocation(x, y, z, 0);
_actor.broadcastPacket(new ExMoveToLocationAirShip(getActor()));
}
}
@@ -50,7 +50,7 @@ public class L2AirShipAI extends L2VehicleAI
{
if (_actor.isMoving())
{
_accessor.stopMove(loc);
_actor.stopMove(loc);
}
if (_clientMoving || (loc != null))