mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2024-11-22 23:53:48 +01:00
Properly show stats with a BitNode mult of 0
This commit is contained in:
parent
dd0ff1b614
commit
ebc6b52af5
@ -66,7 +66,7 @@ function MultiplierTable(props: MultTableProps): React.ReactElement {
|
||||
{props.rows.map((data) => {
|
||||
const { mult, value, effValue = null, color = props.color } = data;
|
||||
|
||||
if (effValue && effValue !== value && player.sourceFileLvl(5) > 0) {
|
||||
if (effValue !== null && effValue !== value && player.sourceFileLvl(5) > 0) {
|
||||
return (
|
||||
<StatsRow key={mult} name={mult} color={color} data={{}}>
|
||||
<>
|
||||
|
Loading…
Reference in New Issue
Block a user