mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2024-11-11 10:13:52 +01:00
Change effect replacer text to x% instead of +x%
This will make replacement work for hacknet cost (which is -x% so currently is not seen for replacement) and will keep the + or - for effectiveness (e.g. +12.3% hacking skill instead of just 12.3% hacking skill)
This commit is contained in:
parent
783750051e
commit
41de3102c7
@ -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 (
|
||||||
|
Loading…
Reference in New Issue
Block a user