1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-06-04 23:44:08 +00:00

Chaos mode is now always unlocked in autocheat

This commit is contained in:
Zeno Rogue 2018-11-27 19:44:32 +01:00
parent e9920d8d57
commit 6c25d2297e

View File

@ -532,6 +532,7 @@ void showChangeMode() {
} }
#endif #endif
else if(uni == 'C') { else if(uni == 'C') {
chaosUnlocked = chaosUnlocked || autocheat;
if(chaosUnlocked) restart_game(rg::chaos); if(chaosUnlocked) restart_game(rg::chaos);
if(!chaosUnlocked) help_nochaos(); if(!chaosUnlocked) help_nochaos();
} }