summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/company_cmd.cpp7
-rw-r--r--src/openttd.cpp5
2 files changed, 5 insertions, 7 deletions
diff --git a/src/company_cmd.cpp b/src/company_cmd.cpp
index 2dfcb9f83..bd62c2e5e 100644
--- a/src/company_cmd.cpp
+++ b/src/company_cmd.cpp
@@ -445,13 +445,6 @@ Company *DoStartupNewCompany(bool is_ai)
c->inaugurated_year = _cur_year;
RandomCompanyManagerFaceBits(c->face, (GenderEthnicity)Random(), false); // create a random company manager face
- /* Engine renewal settings */
- c->engine_renew_list = NULL;
- c->renew_keep_length = false;
- c->engine_renew = _settings_client.gui.autorenew;
- c->engine_renew_months = _settings_client.gui.autorenew_months;
- c->engine_renew_money = _settings_client.gui.autorenew_money;
-
GeneratePresidentName(c);
InvalidateWindow(WC_GRAPH_LEGEND, 0);
diff --git a/src/openttd.cpp b/src/openttd.cpp
index c4e28898e..701db0dc6 100644
--- a/src/openttd.cpp
+++ b/src/openttd.cpp
@@ -754,6 +754,11 @@ static void MakeNewGameDone()
/* Create a single company */
DoStartupNewCompany(false);
+ Company *c = GetCompany(COMPANY_FIRST);
+ c->engine_renew = _settings_client.gui.autorenew;
+ c->engine_renew_months = _settings_client.gui.autorenew_months;
+ c->engine_renew_money = _settings_client.gui.autorenew_money;
+
IConsoleCmdExec("exec scripts/game_start.scr 0");
SetLocalCompany(COMPANY_FIRST);