mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2024-11-19 14:13:48 +01:00
Display multipliers as a percentage
This commit is contained in:
parent
430d1dad9d
commit
0122ce56b6
@ -82,7 +82,7 @@ const BNMultTable = (props: IBNMultTableProps): React.ReactElement => {
|
||||
<StatsRow
|
||||
key={uniqueId()}
|
||||
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}
|
||||
/>
|
||||
));
|
||||
|
Loading…
Reference in New Issue
Block a user