# HG changeset patch # User Darkvater # Date 1148316256 0 # Node ID 583e003bcf2a6db1369e57738d5d131d980ea02c # Parent 2d1985422017976c62532d7f67997ad092a96e54 (svn r4947) - Fix [FS#145]: Starting scenarios did not adhere to local difficulty settings diff --git a/openttd.c b/openttd.c --- a/openttd.c +++ b/openttd.c @@ -625,6 +625,7 @@ void StartupPlayers(void); void StartupDisasters(void); +extern void StartupEconomy(void); /** * Start Scenario starts a new game based on a scenario. @@ -662,6 +663,7 @@ _opt.diff_level = _opt_newgame.diff_level; // Inititalize data + StartupEconomy(); StartupPlayers(); StartupEngines(); StartupDisasters();