Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
L
L2j Server Datapack
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
L2j
L2j Server Datapack
Commits
56ade517
Commit
56ade517
authored
11 years ago
by
Zoey76
Browse files
Options
Downloads
Patches
Plain Diff
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
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
L2J_DataPack_BETA/dist/game/data/scripts/handlers/targethandlers/AreaCorpseMob.java
+3
-4
3 additions, 4 deletions
...e/data/scripts/handlers/targethandlers/AreaCorpseMob.java
with
3 additions
and
4 deletions
L2J_DataPack_BETA/dist/game/data/scripts/handlers/targethandlers/AreaCorpseMob.java
+
3
−
4
View file @
56ade517
...
...
@@ -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
)
{
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment