1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2024-06-18 11:19:59 +00:00

Show "Return to the normal game" in the Yendor menu iff Yendor mode is on.

This eliminates the need to explain why it's a no-op half of the time.
This commit is contained in:
Arthur O'Dwyer 2017-10-30 18:44:54 -07:00
parent d0a271878b
commit 5c8d117f87

View File

@ -488,7 +488,8 @@ namespace yendor {
}
dialog::addBreak(60);
dialog::addItem(XLAT("Return to the normal game"), '0');
if (yendor::on)
dialog::addItem(XLAT("Return to the normal game"), '0');
dialog::addSelItem(XLAT(
easy ? "Challenges do not get harder" : "Each challenge gets harder after each victory"),
" " + XLAT(easy ? "easy" : "challenge"), '1');