mirror of
https://github.com/wesnoth/wesnoth
synced 2025-05-06 12:07:49 +00:00
Implement the cosmetic changes suggested in bug #11607.
This commit is contained in:
parent
ff13231df4
commit
5b30b5f85b
@ -180,17 +180,21 @@ void playsingle_controller::report_victory(
|
||||
report << _("Remaining gold: ")
|
||||
<< remaining_gold << "\n";
|
||||
if(end_level.gold_bonus) {
|
||||
report << _("Early finish bonus: ")
|
||||
<< finishing_bonus_per_turn
|
||||
<< " " << _("per turn") << "\n"
|
||||
<< font::BOLD_TEXT << _("Turns finished early: ")
|
||||
<< turns_left << "\n"
|
||||
<< _("Bonus: ")
|
||||
<< finishing_bonus << "\n"
|
||||
<< _("Gold: ")
|
||||
<< (remaining_gold + finishing_bonus);
|
||||
if (turns_left > -1) {
|
||||
report << _("Early finish bonus: ")
|
||||
<< finishing_bonus_per_turn
|
||||
<< " " << _("per turn") << "\n"
|
||||
<< font::BOLD_TEXT << _("Turns finished early: ")
|
||||
<< turns_left << "\n"
|
||||
<< _("Bonus: ")
|
||||
<< finishing_bonus << "\n";
|
||||
}
|
||||
report << _("Gold: ")
|
||||
<< (remaining_gold + finishing_bonus);
|
||||
}
|
||||
if (remaining_gold > 0) {
|
||||
report << '\n' << _("Carry over percentage: ") << end_level.carryover_percentage;
|
||||
}
|
||||
report << '\n' << _("Carry over percentage: ") << end_level.carryover_percentage;
|
||||
if(end_level.carryover_add) {
|
||||
report << '\n' << font::BOLD_TEXT << _("Bonus Gold: ") << player_gold;
|
||||
} else {
|
||||
|
Loading…
x
Reference in New Issue
Block a user