1
0
Fork 0

Fix #13140: Scale initial industry production estimate by cargo scale

pull/13427/head
Tyler Trahan 2025-02-01 08:24:22 -05:00
parent 2c7b3bb55d
commit 53527d9166
1 changed files with 1 additions and 1 deletions

View File

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