Dropped NPC parameter from OnNpcSocialActionSee.

This commit is contained in:
MobiusDev
2015-08-03 21:38:50 +00:00
parent a90ac81efc
commit bd57c3027b
3 changed files with 6 additions and 16 deletions

View File

@ -6666,7 +6666,7 @@ public abstract class L2Character extends L2Object implements ISkillsHolder, IDe
final L2Npc npcMob = (L2Npc) npc;
if ((npcMob.isInsideRadius(this, 150, true, true))) // 150 radius?
{
EventDispatcher.getInstance().notifyEventAsync(new OnNpcSocialActionSee(npcMob, getActingPlayer(), id), npcMob);
EventDispatcher.getInstance().notifyEventAsync(new OnNpcSocialActionSee(getActingPlayer(), id), npcMob);
}
}
}