1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-10-14 05:57:37 +00:00

reg3:: changed the remaining refs to adjacent_dirs to dirdist; S7 to c->type

This commit is contained in:
Zeno Rogue
2021-07-11 16:18:04 +02:00
parent e9de3ac7d5
commit 7aec4c3cf1
3 changed files with 11 additions and 10 deletions

View File

@@ -199,7 +199,7 @@ EX bool is_zebra_trapdoor(cell *c) {
return false;
}
case gSpace435: {
for(int i=0; i<S7; i++) {
for(int i=0; i<c->type; i++) {
cellwalker cw(c, i);
for(int a=0; a<3; a++) {
if(cw.at->master->fieldval == 0) return true;