From 3dd3cf5a28bbefd4cbc1aea5dfc014391ad70966 Mon Sep 17 00:00:00 2001 From: Sputnuc Date: Sat, 7 Feb 2026 06:40:10 +0700 Subject: [PATCH] True placement efficiency percentages text in ThermalGenerator (#11597) --- core/src/mindustry/world/blocks/power/ThermalGenerator.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/mindustry/world/blocks/power/ThermalGenerator.java b/core/src/mindustry/world/blocks/power/ThermalGenerator.java index 85bf3c424d..f2c60402d1 100644 --- a/core/src/mindustry/world/blocks/power/ThermalGenerator.java +++ b/core/src/mindustry/world/blocks/power/ThermalGenerator.java @@ -61,7 +61,7 @@ public class ThermalGenerator extends PowerGenerator{ super.drawPlace(x, y, rotation, valid); if(displayEfficiency){ - drawPlaceText(Core.bundle.formatFloat("bar.efficiency", sumAttribute(attribute, x, y) * 100, 1), x, y, valid); + drawPlaceText(Core.bundle.formatFloat("bar.efficiency", sumAttribute(attribute, x, y) * 100 * displayEfficiencyScale, 1), x, y, valid); } }