From 86e4f20be84a663077823bc1c547e5187c10bf90 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 594da648e4..33d601eb58 100644 --- a/openttd.c +++ b/openttd.c @@ -632,6 +632,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. @@ -669,6 +670,7 @@ static void StartScenario(void) _opt.diff_level = _opt_newgame.diff_level; // Inititalize data + StartupEconomy(); StartupPlayers(); StartupEngines(); StartupDisasters();