From dd4b07b2a20244c80b90eb60cb08bca761a422bf Mon Sep 17 00:00:00 2001 From: Anuken Date: Tue, 10 Feb 2026 10:47:57 -0500 Subject: [PATCH] Fixed #11647 --- core/src/mindustry/world/blocks/production/HeatCrafter.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/mindustry/world/blocks/production/HeatCrafter.java b/core/src/mindustry/world/blocks/production/HeatCrafter.java index fcf25ddc4c..7cc1ee3d5c 100644 --- a/core/src/mindustry/world/blocks/production/HeatCrafter.java +++ b/core/src/mindustry/world/blocks/production/HeatCrafter.java @@ -53,7 +53,7 @@ public class HeatCrafter extends GenericCrafter{ @Override public boolean shouldConsume(){ - return (heatRequirement <= 0f || heat > 0) && super.canConsume(); + return (heatRequirement <= 0f || heat > 0) && super.shouldConsume(); } @Override