Prevent early return in PowerNode config render

This commit is contained in:
Anuken 2021-03-03 14:42:41 -05:00
parent 93dafc82eb
commit d73cf9fcff

View file

@ -307,7 +307,7 @@ public class PowerNode extends PowerBlock{
}
});
if(otherReq == null || otherReq.block == null) return;
if(otherReq == null || otherReq.block == null) continue;
drawLaser(player == null ? Team.sharded : player.team(), req.drawx(), req.drawy(), otherReq.drawx(), otherReq.drawy(), size, otherReq.block.size);
}