Fixed missing scenario title in lobby for reloaded MP campaigns.

Scenario title was missing due to a typo made in 5238f1e2d8c96ca493a7745a145bef6136dd84da.
This commit is contained in:
Andrius Silinskas 2015-01-18 19:27:58 +00:00
parent 23efbdbf53
commit 68b1b0f657
2 changed files with 2 additions and 1 deletions

View File

@ -155,6 +155,7 @@ Version 1.13.0-dev:
* Fixed the Set Password option during game creation not having an effect
due to a misplaced WML attribute in the client's command for the server
(bug #23015).
* Fixed missing scenario title in lobby for reloaded MP campaigns.
* Replays:
* Added a button that allows playing a single move in replay mode.
* Sound:

View File

@ -134,7 +134,7 @@ void mp_game_settings::set_from_config(const config& game_cfg)
hash = cfg["hash"].str();
mp_era = cfg["mp_era"].str();
mp_scenario = cfg["mp_scenario"].str();
mp_scenario_name = cfg["scenario_name"].str();
mp_scenario_name = cfg["mp_scenario_name"].str();
mp_campaign = cfg["mp_campaign"].str();
difficulty_define = cfg["difficulty_define"].str();
active_mods = utils::split(cfg["active_mods"], ',');