Skip to content

Commit

Permalink
tunit_attack: remove extra newline after XP listing
Browse files Browse the repository at this point in the history
  • Loading branch information
Vultraz committed Mar 27, 2016
1 parent 0da9858 commit ac1f9d9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/gui/dialogs/unit_attack.cpp
Expand Up @@ -126,7 +126,7 @@ static std::string format_stats(const unit& u)
str << font::span_color(u.hp_color())
<< _("HP: ") << u.hitpoints() << "/" << u.max_hitpoints() << "</span>" << "\n";
str << font::span_color(u.xp_color())
<< _("XP: ") << u.experience() << "/" << u.max_experience() << "</span>" << "\n";
<< _("XP: ") << u.experience() << "/" << u.max_experience() << "</span>";

str << "</small>";

Expand Down

0 comments on commit ac1f9d9

Please sign in to comment.