Merge pull request #1538 from Snarling/patch-2

Actually fix fragment power display for negative numbers
This commit is contained in:
hydroflame
2021-10-17 14:29:46 -04:00
committed by GitHub

View File

@@ -55,7 +55,7 @@ export function FragmentInspector(props: IProps): React.ReactElement {
charge = "N/A";
effect = `${f.power}x adjacent fragment power`;
} 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 (