Skip to content
Snippets Groups Projects
Commit 4580e653 authored by Zealar's avatar Zealar
Browse files

BETA: Fix Symbols not working on live players

parent 18029aff
No related branches found
No related tags found
No related merge requests found
......@@ -89,7 +89,7 @@ public class NpcBufferAI implements Runnable
{
case FRIEND:
{
if (isFriendly(player, target) && target.isDead())
if (isFriendly(player, target) && !target.isDead())
{
skill.applyEffects(target, target);
}
......@@ -97,7 +97,7 @@ public class NpcBufferAI implements Runnable
}
case NOT_FRIEND:
{
if (isEnemy(player, target) && target.isDead())
if (isEnemy(player, target) && !target.isDead())
{
// Update PvP status
if (target.isPlayable())
......
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