Browse Source

Fix for TARGET_MULTIFACE skills and summons. Thx Gnacik

Gigiikun 15 years ago
parent
commit
b30b08437c
1 changed files with 1 additions and 1 deletions
  1. 1 1
      L2_GameServer/java/com/l2jserver/gameserver/model/L2Skill.java

+ 1 - 1
L2_GameServer/java/com/l2jserver/gameserver/model/L2Skill.java

@@ -1465,7 +1465,7 @@ public abstract class L2Skill implements IChanceSkillTrigger
             }
             case TARGET_MULTIFACE:
             {
-                if ((!(target instanceof L2Attackable) && !(target instanceof L2PcInstance)))
+                if ((!(target instanceof L2Attackable) && !(target instanceof L2Playable)))
                 {
                     activeChar.sendPacket(new SystemMessage(SystemMessageId.TARGET_IS_INCORRECT));
                     return _emptyTargetList;