From d7d89bc80610beae24ab24b7368f4c28e1ad1cda Mon Sep 17 00:00:00 2001 From: frosch Date: Mon, 9 Apr 2012 12:35:01 +0000 Subject: (svn r24108) -Fix [FS#5142]: When starting GS or AI, always use the settings of the game, not the new-game settings. --- src/game/game_core.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/game/game_core.cpp') diff --git a/src/game/game_core.cpp b/src/game/game_core.cpp index add5c7fd8..c1892097f 100644 --- a/src/game/game_core.cpp +++ b/src/game/game_core.cpp @@ -72,7 +72,7 @@ /* Clients shouldn't start GameScripts */ if (_networking && !_network_server) return; - GameConfig *config = GameConfig::GetConfig(); + GameConfig *config = GameConfig::GetConfig(GameConfig::SSS_FORCE_GAME); GameInfo *info = config->GetInfo(); if (info == NULL) return; -- cgit v1.2.3-54-g00ecf