Correctly state when the turn limit triggers defeat.

Fixes #5168
This commit is contained in:
Pentarctagon 2020-09-27 01:02:15 -05:00
parent e4eeee73bb
commit 02b0374186
No known key found for this signature in database
GPG key ID: 9456BC54A21DBFA0

View file

@ -1388,7 +1388,7 @@ REPORT_GENERATOR(turn, rc)
tooltip << _("Turn Number");
if(nb != -1) {
tooltip << "\n\n" << _("When the game reaches the number of turns indicated by the second number, it will end.");
tooltip << "\n\n" << _("When the game exceeds the number of turns indicated by the second number, it will end.");
}
return text_report(str.str(), tooltip.str());
}