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

BETA: Fixing Chain Heal skill, healing flagged players is possible if they are...

BETA: Fixing Chain Heal skill, healing flagged players is possible if they are on same party/clan/ally.

	Reported by: nBd, !UnAfraid
parent 205dfb79
No related branches found
No related tags found
No related merge requests found
......@@ -117,19 +117,31 @@ public class AreaFriendly implements ITargetTypeHandler
return false;
}
if ((target.isPlayer() && (target.getClanId() != 0)) && (activeChar.getClanId() != target.getClanId()))
if (target.isPlayer())
{
return false;
}
if ((target.isPlayer() && (target.getAllyId() != 0)) && (activeChar.getAllyId() != target.getAllyId()))
{
return false;
}
if ((target != activeChar) && (target.getActingPlayer() != null) && (target.getActingPlayer().getPvpFlag() > 0))
{
return false;
if ((target.getAllyId() != 0) && (activeChar.getAllyId() == target.getAllyId()))
{
return true;
}
if ((target.getClanId() != 0) && (activeChar.getClanId() == target.getClanId()))
{
return true;
}
if ((target != activeChar) && activeChar.isInParty() && target.isInParty())
{
if (activeChar.getParty().getLeader() == target.getParty().getLeader())
{
return true;
}
return false;
}
if ((target != activeChar) && (target.getActingPlayer().getPvpFlag() > 0))
{
return false;
}
}
return true;
}
......
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