diff --git a/core/src/mindustry/world/Block.java b/core/src/mindustry/world/Block.java index cf2aeca15a..a72e53d056 100644 --- a/core/src/mindustry/world/Block.java +++ b/core/src/mindustry/world/Block.java @@ -406,7 +406,7 @@ public class Block extends UnlockableContent implements Senseable{ PowerNode.getNodeLinks(tile, this, player.team(), other -> { PowerNode node = (PowerNode)other.block; Draw.color(node.laserColor1, Renderer.laserOpacity * 0.5f); - node.drawLaser(tile.team(), x * tilesize + offset, y * tilesize + offset, other.x, other.y, size, other.block.size); + node.drawLaser(x * tilesize + offset, y * tilesize + offset, other.x, other.y, size, other.block.size); Drawf.square(other.x, other.y, other.block.size * tilesize / 2f + 2f, Pal.place); });