Skip to content

Commit

Permalink
fix format Suspend for modulesCalc
Browse files Browse the repository at this point in the history
  • Loading branch information
userXinos committed Feb 26, 2024
1 parent aa0c8de commit d98f039
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/regulation/formatValueRules.js
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ export default [
],
[
['MovementSlowdown', 'DamageReduceFactor', 'MotionShieldPct'],
(v) => `${100 - v}%`,
(v) => `${(v > 0) ? (100 - v) : v}%`,
],
[
['MiningSpeedModifierPct', 'DamageAmplifyFactor'],
Expand Down

0 comments on commit d98f039

Please sign in to comment.