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

fixed the help display when chaos mode locked

This commit is contained in:
Zeno Rogue 2018-06-29 12:30:41 +02:00
parent 53e9cb3ca5
commit 91d203f556

View File

@ -460,7 +460,7 @@ void showChangeMode() {
dialog::addBoolItem(XLAT("%1 Challenge", moPrincess), (princess::challenge), 'P');
dialog::addBoolItem(XLAT("random pattern mode"), (randomPatternsMode), 'r');
#if CAP_DAILY
dialog::addBoolItem(XLAT("Strange Challenge"), (randomPatternsMode), 'z');
dialog::addBoolItem(XLAT("Strange Challenge"), daily::on, 'z');
#endif
dialog::addBreak(50);
@ -533,7 +533,7 @@ void showChangeMode() {
#endif
else if(uni == 'C') {
if(chaosUnlocked) restart_game(rg::chaos);
if(chaosmode) help_nochaos();
if(!chaosUnlocked) help_nochaos();
}
else if(xuni == 'P') {
if(!princess::everSaved)