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

@ -20,7 +20,6 @@ package com.l2jserver.gameserver.ai;
import com.l2jserver.gameserver.model.L2Object;
import com.l2jserver.gameserver.model.actor.L2Character;
import com.l2jserver.gameserver.model.actor.L2Character.AIAccessor;
import com.l2jserver.gameserver.model.actor.L2Playable;
import com.l2jserver.gameserver.model.skills.Skill;
import com.l2jserver.gameserver.model.zone.ZoneId;
@ -34,11 +33,11 @@ import com.l2jserver.gameserver.network.SystemMessageId;
public abstract class L2PlayableAI extends L2CharacterAI
{
/**
* @param accessor
* @param creature the creature
*/
public L2PlayableAI(AIAccessor accessor)
public L2PlayableAI(L2Playable creature)
{
super(accessor);
super(creature);
}
@Override