Skip to content

Commit

Permalink
Revert "Game Config Manager: [side] no_leader should not default to t…
Browse files Browse the repository at this point in the history
…rue if absent"

This reverts commit 5aaa9ba.
  • Loading branch information
Vultraz committed Oct 11, 2016
1 parent 3cd9d34 commit a1e6020
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/game_config_manager.cpp
Expand Up @@ -276,7 +276,7 @@ void game_config_manager::load_game_config(FORCE_RELOAD_CONFIG force_reload,
scenario["require_scenario"] = require_campaign;
for (config& side : scenario.child_range("side"))
{
side["no_leader"] = side["no_leader"].to_bool(false);
side["no_leader"] = side["no_leader"].to_bool(true);
}
}
}
Expand Down

0 comments on commit a1e6020

Please sign in to comment.