diff --git a/src/client/tile.cpp b/src/client/tile.cpp index 6143f7b0..bbc7d110 100644 --- a/src/client/tile.cpp +++ b/src/client/tile.cpp @@ -506,6 +506,9 @@ bool Tile::isWalkable(bool ignoreCreatures) if(!getGround()) return false; + if(g_game.getClientVersion() <= 740 && hasElevation(2)) + return false; + for(const ThingPtr& thing : m_things) { if(thing->isNotWalkable()) return false;