diff --git a/src/client/tile.cpp b/src/client/tile.cpp index bbc7d110..0ba698eb 100644 --- a/src/client/tile.cpp +++ b/src/client/tile.cpp @@ -485,7 +485,7 @@ ThingPtr Tile::getTopMultiUseThing() for(uint i = 0; i < m_things.size(); ++i) { ThingPtr thing = m_things[i]; - if(!thing->isGround() && !thing->isOnBottom() && !thing->isOnTop()) { + if(!thing->isGround() && !thing->isGroundBorder() && !thing->isOnBottom() && !thing->isOnTop()) { if(i > 0 && thing->isSplash()) return m_things[i-1]; return thing;