From 2b7e2a45eaed98c4e0f52d517618720e56bf0b9e Mon Sep 17 00:00:00 2001 From: Sam Date: Mon, 25 Jan 2016 22:19:29 +0100 Subject: [PATCH] Fix 7.4 walking over items with elevation --- src/client/tile.cpp | 3 +++ 1 file changed, 3 insertions(+) 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;