(svn r4947) - Fix [FS#145]: Starting scenarios did not adhere to local difficulty settings
authorDarkvater
Mon, 22 May 2006 16:44:16 +0000
changeset 3891 b39019cd32cf
parent 3890 f8f13a91446a
child 3892 b94dcbb96506
(svn r4947) - Fix [FS#145]: Starting scenarios did not adhere to local difficulty settings
openttd.c
--- a/openttd.c	Mon May 22 14:41:20 2006 +0000
+++ b/openttd.c	Mon May 22 16:44:16 2006 +0000
@@ -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();