From 65a2a2e74b37d416f55b95e6a995abe45d28af0a Mon Sep 17 00:00:00 2001 From: Zeno Rogue Date: Sat, 29 May 2021 12:17:51 +0200 Subject: [PATCH] fixed a bug in OoY message --- yendor.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/yendor.cpp b/yendor.cpp index 644ce09d..2fb7220a 100644 --- a/yendor.cpp +++ b/yendor.cpp @@ -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();