diff --git a/src/otclient/tile.cpp b/src/otclient/tile.cpp index d533fc8d..1a33e1bd 100644 --- a/src/otclient/tile.cpp +++ b/src/otclient/tile.cpp @@ -152,11 +152,6 @@ void Tile::removeWalkingCreature(const CreaturePtr& creature) m_walkingCreatures.erase(it); } -void Tile::appendThing(const ThingPtr& thing) -{ - -} - void Tile::addThing(const ThingPtr& thing, int stackPos) { if(!thing) diff --git a/src/otclient/tile.h b/src/otclient/tile.h index 6231ee6e..47fba1c3 100644 --- a/src/otclient/tile.h +++ b/src/otclient/tile.h @@ -64,7 +64,6 @@ public: void addWalkingCreature(const CreaturePtr& creature); void removeWalkingCreature(const CreaturePtr& creature); - void appendThing(const ThingPtr& thing); void addThing(const ThingPtr& thing, int stackPos); bool removeThing(ThingPtr thing); ThingPtr getThing(int stackPos);