diff --git a/src/industry_cmd.cpp b/src/industry_cmd.cpp index 1d50df13b2..93bdf9eb4b 100644 --- a/src/industry_cmd.cpp +++ b/src/industry_cmd.cpp @@ -1838,7 +1838,7 @@ static void DoCreateNewIndustry(Industry *i, TileIndex tile, IndustryType type, if (indspec->callback_mask.Test(IndustryCallbackMask::Production256Ticks)) { IndustryProductionCallback(i, 1); for (auto &p : i->produced) { - p.history[LAST_MONTH].production = p.waiting * 8; + p.history[LAST_MONTH].production = ScaleByCargoScale(p.waiting * 8, false); p.waiting = 0; } }