Fix empty sides not getting listed at the status table bug #19322
This commit is contained in:
parent
23e73f7f1e
commit
3277f00658
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Reference in a new issue