From 63f1a935307a6138a4e0d5d4b26f4423e48ac075 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();