mirror of
https://github.com/exzork/gc-tools.git
synced 2024-11-21 22:58:25 +00:00
fix negative value
This commit is contained in:
parent
579a5eea90
commit
d3a4c65683
@ -148,7 +148,7 @@ export default function Artifacts() {
|
|||||||
if (propTypeValues[affix.PropType] === undefined) {
|
if (propTypeValues[affix.PropType] === undefined) {
|
||||||
propTypeValues[affix.PropType] = [];
|
propTypeValues[affix.PropType] = [];
|
||||||
}
|
}
|
||||||
propTypeValues[affix.PropType].push(affix.PropValue);
|
if(affix.PropValue>0) propTypeValues[affix.PropType].push(affix.PropValue);
|
||||||
});
|
});
|
||||||
return propTypeValues;
|
return propTypeValues;
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user