From 90ba8e1bc83b6b5fd0477ce962675e81d072df4c Mon Sep 17 00:00:00 2001 From: yexo Date: Tue, 12 May 2009 22:32:22 +0000 Subject: (svn r16287) -Fix: fix possible (in theory) desync related to autorenew settings --- src/company_cmd.cpp | 7 ------- src/openttd.cpp | 5 +++++ 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); -- cgit v1.2.3-54-g00ecf