mirror of
https://github.com/Anuken/Mindustry.git
synced 2026-01-27 23:11:12 -08:00
Prevent early return in PowerNode config render
This commit is contained in:
parent
93dafc82eb
commit
d73cf9fcff
1 changed files with 1 additions and 1 deletions
|
|
@ -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);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue