diff options
Diffstat (limited to 'src/being/being.cpp')
-rw-r--r-- | src/being/being.cpp | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/src/being/being.cpp b/src/being/being.cpp index 911951789..817fcca70 100644 --- a/src/being/being.cpp +++ b/src/being/being.cpp @@ -1739,14 +1739,11 @@ void Being::nextTile() restrict2 if (mX != pos.x || mY != pos.y) { - if (mMap) + mOldHeight = mMap->getHeightOffset(mX, mY); + if (mReachable == Reachable::REACH_NO && + mMap->getBlockMask(mX, mY) != mMap->getBlockMask(pos.x, pos.y)) { - mOldHeight = mMap->getHeightOffset(mX, mY); - if (mReachable == Reachable::REACH_NO && - mMap->getBlockMask(mX, mY) != mMap->getBlockMask(pos.x, pos.y)) - { - mReachable = Reachable::REACH_UNKNOWN; - } + mReachable = Reachable::REACH_UNKNOWN; } } mX = pos.x; |