Fix empty sides not getting listed at the status table bug #19322

This commit is contained in:
Jon Daniel 2012-05-02 06:04:11 +00:00
parent 23e73f7f1e
commit 3277f00658

View file

@ -400,7 +400,7 @@ void menu_handler::status_table(int selected)
//lack of information about the other sides But he see
//all names with in colors
for(size_t n = 0; n != teams_.size(); ++n) {
if(teams_[n].is_empty()||teams_[n].hidden()) {
if(teams_[n].hidden()) {
continue;
}
status_table_empty=false;