Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
ziqian zhang
Grasscutter
Commits
79323a05
Unverified
Commit
79323a05
authored
Aug 25, 2022
by
Melledy
Browse files
Fix weird conditional in `EquipAffixData`
parent
1c3a6fc8
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/main/java/emu/grasscutter/data/excels/EquipAffixData.java
View file @
79323a05
...
...
@@ -49,7 +49,7 @@ public class EquipAffixData extends GameResource {
public
void
onLoad
()
{
ArrayList
<
FightPropData
>
parsed
=
new
ArrayList
<
FightPropData
>(
getAddProps
().
length
);
for
(
FightPropData
prop
:
getAddProps
())
{
if
(
prop
.
getPropType
()
!=
null
||
prop
.
getValue
()
=
=
0
f
)
{
if
(
prop
.
getPropType
()
!=
null
&&
prop
.
getValue
()
!
=
0
f
)
{
prop
.
onLoad
();
parsed
.
add
(
prop
);
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment