Skip to content
Snippets Groups Projects
Commit 56ade517 authored by Zoey76's avatar Zoey76
Browse files

BETA: Fixing NPE vulnerability for area skills when summon doesn't have a target.

Reported by: thorl2
parent fea960bb
No related branches found
No related tags found
No related merge requests found
......@@ -39,8 +39,7 @@ public class AreaCorpseMob implements ITargetTypeHandler
@Override
public L2Object[] getTargetList(L2Skill skill, L2Character activeChar, boolean onlyFirst, L2Character target)
{
List<L2Character> targetList = new ArrayList<>();
if (!target.isL2Attackable() || !target.isDead())
if ((target == null) || !target.isL2Attackable() || !target.isDead())
{
activeChar.sendPacket(SystemMessageId.TARGET_IS_INCORRECT);
return EMPTY_TARGET_LIST;
......@@ -54,10 +53,10 @@ public class AreaCorpseMob implements ITargetTypeHandler
};
}
final List<L2Character> targetList = new ArrayList<>();
targetList.add(target);
final boolean srcInArena = (activeChar.isInsideZone(ZoneId.PVP) && !activeChar.isInsideZone(ZoneId.SIEGE));
final boolean srcInArena = activeChar.isInsideZone(ZoneId.PVP) && !activeChar.isInsideZone(ZoneId.SIEGE);
final Collection<L2Character> objs = activeChar.getKnownList().getKnownCharacters();
for (L2Character obj : objs)
{
......
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