diff --git a/src/client/tile.cpp b/src/client/tile.cpp index 3a93395e..a9d702c4 100644 --- a/src/client/tile.cpp +++ b/src/client/tile.cpp @@ -399,13 +399,13 @@ ThingPtr Tile::getTopUseThing() for(uint i = 0; i < m_things.size(); ++i) { ThingPtr thing = m_things[i]; - if(thing->isForceUse() || (!thing->isGround() && !thing->isGroundBorder() && !thing->isOnBottom() && !thing->isOnTop() && !thing->isCreature())) + if (thing->isForceUse() || (!thing->isGround() && !thing->isGroundBorder() && !thing->isOnBottom() && !thing->isOnTop() && !thing->isCreature() && !thing->isSplash())) return thing; } for(uint i = 0; i < m_things.size(); ++i) { ThingPtr thing = m_things[i]; - if(!thing->isGround() && !thing->isGroundBorder() && !thing->isCreature()) + if (!thing->isGround() && !thing->isGroundBorder() && !thing->isCreature() && !thing->isSplash()) return thing; }