Skip to content

Commit

Permalink
Merge pull request #3561 from jostephd/game-load-compatibility
Browse files Browse the repository at this point in the history
Game Load: Restore the ability to select 1.12.6 savegames in the list
  • Loading branch information
jostephd committed Sep 28, 2018
2 parents db40dca + adc5d4a commit e1bc036
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/save_index.cpp
Expand Up @@ -373,7 +373,7 @@ void extract_summary_from_config(config& cfg_save, config& cfg_summary)
cfg_summary["difficulty"] = cfg_save["difficulty"];
cfg_summary["random_mode"] = cfg_save["random_mode"];

cfg_summary["active_mods"] = cfg_save.child("multiplayer")["active_mods"];
cfg_summary["active_mods"] = cfg_save.child_or_empty("multiplayer")["active_mods"];
cfg_summary["campaign"] = cfg_save["campaign"];
cfg_summary["version"] = cfg_save["version"];
cfg_summary["corrupt"] = "";
Expand Down

0 comments on commit e1bc036

Please sign in to comment.