mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2026-04-17 14:59:16 +02:00
Display multipliers as a percentage
This commit is contained in:
@@ -82,7 +82,7 @@ const BNMultTable = (props: IBNMultTableProps): React.ReactElement => {
|
|||||||
<StatsRow
|
<StatsRow
|
||||||
key={uniqueId()}
|
key={uniqueId()}
|
||||||
name={value.name}
|
name={value.name}
|
||||||
data={{ content: value.content ?? `x${props.mults[key].toFixed(3)}` }}
|
data={{ content: value.content ?? `${(props.mults[key] * 100).toFixed(3)}%` }}
|
||||||
color={value.color ?? Settings.theme.primary}
|
color={value.color ?? Settings.theme.primary}
|
||||||
/>
|
/>
|
||||||
));
|
));
|
||||||
|
|||||||
Reference in New Issue
Block a user