This commit is contained in:
Anuken
2023-01-16 15:28:40 -05:00
parent f6c97f4ff6
commit 977192bc54

View File

@@ -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));
}