OpenTTD-patches/bin/game/compat_brgs.nut
2020-07-01 18:21:19 +01:00

10 lines
337 B
Plaintext

if ("GetTimeBetweenDates" in CompanyGoal) {
CompanyGoal._GetTimeBetweenDates <- CompanyGoal.GetTimeBetweenDates;
CompanyGoal.GetTimeBetweenDates <- function(start, end)
{
return CompanyGoal._GetTimeBetweenDates(start, start + ((end - start) / GSDate.GetDayLengthFactor()));
}
GSLog.Info("Day length compatibility in effect.");
}