From 977192bc5487066db37d97dd82552b4161a5f5b7 Mon Sep 17 00:00:00 2001 From: Anuken Date: Mon, 16 Jan 2023 15:28:40 -0500 Subject: [PATCH] Fixed #8187 --- 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 66c57eb11a..5af67c37c7 100644 --- a/core/src/mindustry/world/blocks/production/HeatCrafter.java +++ b/core/src/mindustry/world/blocks/production/HeatCrafter.java @@ -26,7 +26,7 @@ public class HeatCrafter extends GenericCrafter{ addBar("heat", (HeatCrafterBuild entity) -> new Bar(() -> - Core.bundle.format("bar.heatpercent", (int)(entity.heat + 0.00001f), (int)(entity.efficiencyScale() * 100 + 0.0001f)), + Core.bundle.format("bar.heatpercent", (int)(entity.heat + 0.01f), (int)(entity.efficiencyScale() * 100 + 0.01f)), () -> Pal.lightOrange, () -> entity.heat / heatRequirement)); }