diff --git a/src/client/tile.h b/src/client/tile.h index 8c91ec6c..72f70a7a 100644 --- a/src/client/tile.h +++ b/src/client/tile.h @@ -88,8 +88,8 @@ public: int getDrawElevation() { return m_drawElevation; } std::vector getItems(); std::vector getCreatures(); - std::vector getWalkingCreatures() { return m_walkingCreatures; } - std::vector getThings() { return m_things; } + const std::vector& getWalkingCreatures() { return m_walkingCreatures; } + const std::vector& getThings() { return m_things; } ItemPtr getGround(); int getGroundSpeed(); uint8 getMinimapColorByte();