From bbfb399c29b1b0884c8486318596976a394f78dd Mon Sep 17 00:00:00 2001 From: Darkvater Date: Mon, 22 May 2006 16:44:16 +0000 Subject: [PATCH] (svn r4947) - Fix [FS#145]: Starting scenarios did not adhere to local difficulty settings --- openttd.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/openttd.c b/openttd.c index bf6250ff73..2cd20eb7df 100644 --- a/openttd.c +++ b/openttd.c @@ -625,6 +625,7 @@ static void MakeNewEditorWorld(void) void StartupPlayers(void); void StartupDisasters(void); +extern void StartupEconomy(void); /** * Start Scenario starts a new game based on a scenario. @@ -662,6 +663,7 @@ static void StartScenario(void) _opt.diff_level = _opt_newgame.diff_level; // Inititalize data + StartupEconomy(); StartupPlayers(); StartupEngines(); StartupDisasters();