Changeset 2240
- Timestamp:
- 07/05/08 18:52:29 (3 months ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/L2_GameServer/java/net/sf/l2j/gameserver/model/L2Skill.java
r2211 r2240 2335 2335 targetList.add((L2Character) newTarget); 2336 2336 if (((L2PcInstance) newTarget).getPet() != null) 2337 if ( !Util.checkIfInRange(radius, activeChar, ((L2PcInstance) newTarget).getPet(), true))2337 if (Util.checkIfInRange(radius, activeChar, ((L2PcInstance) newTarget).getPet(), true)) 2338 2338 if ((targetType != SkillTargetType.TARGET_CORPSE_ALLY) && !(((L2PcInstance) newTarget).getPet().isDead())) 2339 2339 targetList.add(((L2PcInstance) newTarget).getPet()); … … 2412 2412 targetList.add(newTarget); 2413 2413 if (newTarget.getPet() != null) 2414 if ( !Util.checkIfInRange(radius, activeChar, newTarget.getPet(), true))2414 if (Util.checkIfInRange(radius, activeChar, newTarget.getPet(), true)) 2415 2415 if ((targetType != SkillTargetType.TARGET_CORPSE_CLAN) && !(newTarget.getPet().isDead())) 2416 2416 targetList.add(newTarget.getPet());
