diff --git a/src/otclient/core/item.cpp b/src/otclient/core/item.cpp index bfeeefa3..d5b297b0 100644 --- a/src/otclient/core/item.cpp +++ b/src/otclient/core/item.cpp @@ -68,7 +68,7 @@ void Item::draw(const Point& dest, float scaleFactor, bool animate) // determine x,y,z patterns int xPattern = 0, yPattern = 0, zPattern = 0; - if(isGround()) { + if(isGround() || isOnBottom()) { xPattern = m_position.x % getNumPatternsX(); yPattern = m_position.y % getNumPatternsY(); zPattern = m_position.z % getNumPatternsZ();