Properly show stats with a BitNode mult of 0

This commit is contained in:
nickofolas 2022-05-08 20:45:00 -05:00
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={{}}>
<>