Fix team-coloring in help.
This commit is contained in:
parent
f979e2924b
commit
19af68d40a
1 changed files with 2 additions and 2 deletions
|
@ -1086,10 +1086,10 @@ public:
|
|||
const unit_type& male_type = type_.get_gender_unit_type(unit_race::MALE);
|
||||
|
||||
// Show the unit's image and its level.
|
||||
ss << "<img>src='" << male_type.image() << "'</img> ";
|
||||
ss << "<img>src='" << male_type.image() << "(1," << male_type.flag_rgb() << ")" << "'</img> ";
|
||||
|
||||
if (&female_type != &male_type)
|
||||
ss << "<img>src='" << female_type.image() << "'</img> ";
|
||||
ss << "<img>src='" << female_type.image() << "(1," << female_type.flag_rgb() << ")" << "'</img> ";
|
||||
|
||||
ss << "<format>font_size=" << font::relative_size(11) << " text=' " << escape(_("level"))
|
||||
<< " " << type_.level() << "'</format>";
|
||||
|
|
Loading…
Add table
Reference in a new issue