diff options
Diffstat (limited to 'src/game/Map.h')
-rw-r--r-- | src/game/Map.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/game/Map.h b/src/game/Map.h index e9909b122a3..2ef300a4af6 100644 --- a/src/game/Map.h +++ b/src/game/Map.h @@ -347,9 +347,9 @@ class MANGOS_DLL_SPEC Map : public GridRefManager<NGridType>, public MaNGOS::Obj GetZoneAndAreaIdByAreaFlag(zoneid,areaid,GetAreaFlag(x,y,z),GetId()); } - virtual void MoveAllCreaturesInMoveList(); - virtual void RemoveAllObjectsInRemoveList(); - virtual void RelocationNotify(); + void MoveAllCreaturesInMoveList(); + void RemoveAllObjectsInRemoveList(); + void RelocationNotify(); virtual void RemoveAllPlayers(); bool CreatureRespawnRelocation(Creature *c); // used only in MoveAllCreaturesInMoveList and ObjectGridUnloader @@ -384,7 +384,7 @@ class MANGOS_DLL_SPEC Map : public GridRefManager<NGridType>, public MaNGOS::Obj void AddObjectToRemoveList(WorldObject *obj); void AddObjectToSwitchList(WorldObject *obj, bool on); - //void DoDelayedMovesAndRemoves(); + virtual void DelayedUpdate(const uint32 diff); virtual bool RemoveBones(uint64 guid, float x, float y); |