diff --git a/core/src/mindustry/world/blocks/power/PowerGraph.java b/core/src/mindustry/world/blocks/power/PowerGraph.java index 3b217a06ba..f5caca98d0 100644 --- a/core/src/mindustry/world/blocks/power/PowerGraph.java +++ b/core/src/mindustry/world/blocks/power/PowerGraph.java @@ -368,6 +368,8 @@ public class PowerGraph{ @Deprecated private boolean otherConsumersAreValid(Building build, Consume consumePower){ + if(!build.enabled) return false; + float f = build.efficiency; //hack so liquids output positive efficiency values build.efficiency = 1f;