diff options
-rw-r--r-- | src/map.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/map.cpp b/src/map.cpp index de6cf12a..87c902f6 100644 --- a/src/map.cpp +++ b/src/map.cpp @@ -831,7 +831,7 @@ Path Map::findPath(int startX, int startY, int destX, int destY, MetaTile *t1 = getMetaTile(curr.x, curr.y + dy); MetaTile *t2 = getMetaTile(curr.x + dx, curr.y); - if ((t1->blockmask | t2->blockmask) & BLOCKMASK_WALL) + if ((t1->blockmask | t2->blockmask) & walkmask) continue; } |