Skip to content
Snippets Groups Projects
Commit 7bb1ed6e authored by Adry_85's avatar Adry_85
Browse files

BETA: Fixing target party, now effect works on all party members.

	Reported by: u3games
parent 91adae17
No related branches found
No related tags found
No related merge requests found
......@@ -48,7 +48,6 @@ public class Party implements ITargetTypeHandler
targetList.add(activeChar);
final int radius = skill.getAffectRange();
L2PcInstance player = activeChar.getActingPlayer();
if (activeChar.isSummon())
{
......@@ -67,7 +66,6 @@ public class Party implements ITargetTypeHandler
if (activeChar.isInParty())
{
int maxTargets = skill.getAffectLimit();
// Get a list of Party Members
for (L2PcInstance partyMember : activeChar.getParty().getMembers())
{
......@@ -85,11 +83,6 @@ public class Party implements ITargetTypeHandler
{
targetList.add(partyMember.getSummon());
}
if (targetList.size() >= maxTargets)
{
break;
}
}
}
return targetList.toArray(new L2Character[targetList.size()]);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment