Analyzer: Fix Splattershot Pro negative run speed

Closes #1176
This commit is contained in:
Kalle
2022-12-06 15:34:00 +02:00
parent 8223cfe953
commit ec2133b9c8
2 changed files with 1 additions and 12 deletions

View File

@@ -141,10 +141,6 @@
"ConsumeRt_Main": {
"High": 0.5,
"Mid": 0.7
},
"MoveVelRt_Shot": {
"High": -1,
"Mid": -1
}
},
"MoveSpeed": 0.055,
@@ -162,10 +158,6 @@
"ConsumeRt_Main": {
"High": 0.5,
"Mid": 0.7
},
"MoveVelRt_Shot": {
"High": -1,
"Mid": -1
}
},
"MoveSpeed": 0.055,
@@ -422,10 +414,6 @@
"ConsumeRt_Main": {
"High": 0.5,
"Mid": 0.7
},
"MoveVelRt_Shot": {
"High": -1,
"Mid": -1
}
},
"TripleShotSpanFrame": 20,

View File

@@ -463,6 +463,7 @@ function resolveOverwritesWithArbitraryKeys(
paramsObj as Record<string, number>
)) {
if (!key.startsWith("Overwrite_")) continue;
if (value === -1) continue;
let abilityKey = key.replace("Overwrite_", "");