1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-08-30 01:07:57 +00:00

removed BUILDZEBRA from drawcell

This commit is contained in:
Zeno Rogue
2019-10-25 09:22:19 +02:00
parent fd8f363b8f
commit 4d5fb13b32
2 changed files with 12 additions and 10 deletions

View File

@@ -444,5 +444,17 @@ void buildAutomatonRule(cell *c) {
}
}
/*
to drawcell:
if(c->type == 6 && c->tmp > 0) {
int i = c->tmp;
zebra(cellwalker(c, i&15), 1, i>>4, "", 0);
}
c->item = eItem(c->heat / 4);
buildAutomatonRule(c);
#endif
*/
// #define BUILDZEBRA
}