1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-12-14 01:58:06 +00:00

debug_cellnames option

This commit is contained in:
Zeno Rogue
2020-07-07 21:25:27 +02:00
parent f900ec7443
commit 3c8d5979f1
2 changed files with 10 additions and 0 deletions

View File

@@ -11,6 +11,7 @@ namespace hr {
EX int steplimit = 0;
EX int cstep;
EX bool buggyGeneration = false;
EX bool debug_cellnames = false;
EX vector<cell*> buggycells;
@@ -848,6 +849,9 @@ int read_cheat_args() {
PHASE(1);
fixseed = true; autocheat = true;
}
else if(argis("-cellnames")) {
cheat(); debug_cellnames = true;
}
else if(argis("-fixx")) {
PHASE(1);
fixseed = true; autocheat = true;