1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2026-05-14 18:22:07 +00:00

chaosmode variants (CLI only for now)

This commit is contained in:
Zeno Rogue
2019-05-27 07:17:39 +02:00
parent 638274504c
commit 2b1aebb9b4
9 changed files with 73 additions and 7 deletions
+18
View File
@@ -742,6 +742,24 @@ int read_cheat_args() {
cheat();
quantum = true;
}
else if(argis("-chaos-circle")) {
PHASEFROM(2);
cheat();
stop_game();
chaosmode = 2;
}
else if(argis("-chaos-total")) {
PHASEFROM(2);
cheat();
stop_game();
chaosmode = 3;
}
else if(argis("-chaos-random")) {
PHASEFROM(2);
cheat();
stop_game();
chaosmode = 4;
}
else if(argis("-fix")) {
PHASE(1);
fixseed = true; autocheat = true;