Actually fix fragment power display for negative numbers

Replace either -x% if present or just x%, to prevent --##.#% power display.
This commit is contained in:
Snarling 2021-10-17 03:11:42 -04:00 committed by GitHub
parent a612352f32
commit b4c0458590
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -55,7 +55,7 @@ export function FragmentInspector(props: IProps): React.ReactElement {
charge = "N/A"; charge = "N/A";
effect = `${f.power}x adjacent fragment power`; effect = `${f.power}x adjacent fragment power`;
} else { } else {
effect = Effect(f.type).replace("x%", numeralWrapper.formatPercentage(props.gift.effect(props.fragment) - 1)); effect = Effect(f.type).replace(/-*x%/, numeralWrapper.formatPercentage(props.gift.effect(props.fragment) - 1));
} }
return ( return (