Enable economy day length scaling in wallclock timekeeping mode

This commit is contained in:
Jonathan G Rennison
2024-04-30 01:11:38 +01:00
parent 9a07f14f56
commit d90c540f9e
20 changed files with 177 additions and 40 deletions

View File

@@ -902,7 +902,7 @@ struct GameSettings {
uint8_t EffectiveDayLengthFactor() const
{
return this->economy.timekeeping_units == TKU_CALENDAR ? this->economy.day_length_factor : 1;
return this->economy.day_length_factor;
}
};