diff --git a/core/src/mindustry/world/blocks/power/ThermalGenerator.java b/core/src/mindustry/world/blocks/power/ThermalGenerator.java index 981ea3395a..bb653323a3 100644 --- a/core/src/mindustry/world/blocks/power/ThermalGenerator.java +++ b/core/src/mindustry/world/blocks/power/ThermalGenerator.java @@ -48,6 +48,10 @@ public class ThermalGenerator extends PowerGenerator{ super.setStats(); stats.add(Stat.tiles, attribute, floating, size * size * displayEfficiencyScale, !displayEfficiency); + + if(liquidOutput != null){ + stats.add(Stat.output, StatValues.liquid(liquidOutput.liquid, liquidOutput.amount * size * size * 60f, true)); + } } @Override