empty slots stay as empty slots

This commit is contained in:
Serge Martin 2006-10-30 10:50:47 +00:00
parent 07b79f6ea0
commit c9f227e59d

View file

@ -131,7 +131,8 @@ void game::start_game()
//take control of any sides if they happen to have the same name as one of the descriptions
config::child_itors sides = level_.child_range("side");
for(; sides.first != sides.second; ++sides.first) {
(**sides.first)["controller"] = "human";
if ((**sides.first)["controller"] != "null")
(**sides.first)["controller"] = "human";
}
describe_slots();