Shows the current player name in the status table...

...and not the player that started with this team.
This commit is contained in:
Jörg Hinrichs 2006-09-05 20:12:39 +00:00
parent 261e766797
commit 120ccf87cb

View file

@ -347,7 +347,7 @@ namespace events{
str << "~TC(" << (n+1) << "," << leader->second.team_color() << ")";
#endif
str << COLUMN_SEPARATOR << "\033[3" << lexical_cast<char, size_t>(n+1) << 'm'
<< leader->second.description() << COLUMN_SEPARATOR;
<< teams_[n].current_player() /* leader->second.description() */ << COLUMN_SEPARATOR;
} else {
str << ' ' << COLUMN_SEPARATOR << "\033[3" << lexical_cast<char, size_t>(n+1) << "m-" << COLUMN_SEPARATOR;