I've fixed the issue for myself, and figured others might benefit from the fix as well. Here is a patch to fix the issue:
Code: Select all
--- src/Misc.pm (revision 7164)
+++ src/Misc.pm (working copy)
@@ -511,7 +511,7 @@
}
}
for (my $y = $bottomRight{y} + 1; $y < $topRight{y}; $y++) {
- if ($field->isWalkable($topLeft{x}, $y)) {
+ if ($field->isWalkable($topRight{x}, $y)) {
push @walkableBlocks, {x => $topRight{x}, y => $y};
}
}