From 1072c310ad3025880470baacfa673d6738a47367 Mon Sep 17 00:00:00 2001 From: Anuken Date: Fri, 19 Feb 2021 09:04:13 -0500 Subject: [PATCH] Fixed #4732 --- core/src/mindustry/entities/comp/BuildingComp.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/mindustry/entities/comp/BuildingComp.java b/core/src/mindustry/entities/comp/BuildingComp.java index f270929f3a..c63e538363 100644 --- a/core/src/mindustry/entities/comp/BuildingComp.java +++ b/core/src/mindustry/entities/comp/BuildingComp.java @@ -911,7 +911,7 @@ abstract class BuildingComp implements Posc, Teamc, Healthc, Buildingc, Timerc, if(net.client()) return; if(block.consumesPower || block.outputsPower){ - int range = 10; + int range = 12; tempTiles.clear(); Geometry.circle(tileX(), tileY(), range, (x, y) -> { Building other = world.build(x, y);