diff --git a/src/playlevel.cpp b/src/playlevel.cpp index 1e5ab410380..9a0d98afdff 100644 --- a/src/playlevel.cpp +++ b/src/playlevel.cpp @@ -851,13 +851,8 @@ redo_turn: } // xgettext:no-c-format - // 125 == 100 / 80% - if (player->gold >= 125) { - report << "\n" << _("80% of gold is retained for the next scenario") << "\n" - << _("Retained Gold: ") << player->gold; - } else { - report << "\n" << _("100 gold will be available for the next scenario") << "\n" << _("Retained Gold: ") << player->gold; - } + report << '\n' << _("80% of gold is retained for the next scenario") << '\n' + << _("Retained Gold: ") << player->gold; } }