changed constant 3 to caflWarp

This commit is contained in:
Zeno Rogue 2022-03-27 11:09:33 +02:00
parent fbb75309d0
commit 78ddda1b4f
1 changed files with 1 additions and 1 deletions

View File

@ -117,7 +117,7 @@ EX eGravity get_move_gravity(cell *c, cell *c2) {
}
EX bool isWarped(cell *c) {
return isWarpedType(c->land) || (c->land == laCanvas && canvasfloor == 3) || (!inmirrororwall(c->land) && (items[itOrb37] && c->cpdist <= 4));
return isWarpedType(c->land) || (c->land == laCanvas && canvasfloor == caflWarp) || (!inmirrororwall(c->land) && (items[itOrb37] && c->cpdist <= 4));
}
EX bool nonAdjacent(cell *c, cell *c2) {