fixed a bug in OoY message

This commit is contained in:
Zeno Rogue 2021-05-29 12:17:51 +02:00
parent d4a03aa780
commit 65a2a2e74b
1 changed files with 1 additions and 1 deletions

View File

@ -739,7 +739,7 @@ EX namespace yendor {
dialog::addItem(XLAT("Return to the normal game"), '0');
dialog::addSelItem(
easy ? XLAT("Challenges do not get harder") : XLAT("Each challenge gets harder after each victory"),
" " + easy ? XLAT("easy") : XLAT("challenge"), '1');
" " + (easy ? XLAT("easy") : XLAT("challenge")), '1');
dialog::addBack();
dialog::addHelp();