mirror of
https://github.com/wesnoth/wesnoth
synced 2025-05-17 11:28:16 +00:00
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:
parent
23efbdbf53
commit
68b1b0f657
@ -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:
|
||||
|
@ -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"], ',');
|
||||
|
Loading…
x
Reference in New Issue
Block a user