diff options
author | megamage <none@none> | 2009-06-09 23:52:45 -0500 |
---|---|---|
committer | megamage <none@none> | 2009-06-09 23:52:45 -0500 |
commit | 427a81649bed3dffd40d8107155a25266b441e78 (patch) | |
tree | 273d13bfec596b648c354288b44580359799f4e7 /src/game/Map.h | |
parent | eb219b08e28e1df29ecabb8b836e83eaa33bfc42 (diff) |
*Fix the bug that players cannot see anything in instance.
--HG--
branch : trunk
Diffstat (limited to 'src/game/Map.h')
-rw-r--r-- | src/game/Map.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/game/Map.h b/src/game/Map.h index e40c6118ea6..514308c699a 100644 --- a/src/game/Map.h +++ b/src/game/Map.h @@ -340,6 +340,7 @@ class MANGOS_DLL_SPEC Map : public GridRefManager<NGridType>, public MaNGOS::Obj virtual void MoveAllCreaturesInMoveList(); virtual void RemoveAllObjectsInRemoveList(); + virtual void RelocationNotify(); bool CreatureRespawnRelocation(Creature *c); // used only in MoveAllCreaturesInMoveList and ObjectGridUnloader @@ -373,7 +374,7 @@ class MANGOS_DLL_SPEC Map : public GridRefManager<NGridType>, public MaNGOS::Obj void AddObjectToRemoveList(WorldObject *obj); void AddObjectToSwitchList(WorldObject *obj, bool on); - void DoDelayedMovesAndRemoves(); + //void DoDelayedMovesAndRemoves(); virtual bool RemoveBones(uint64 guid, float x, float y); @@ -389,7 +390,6 @@ class MANGOS_DLL_SPEC Map : public GridRefManager<NGridType>, public MaNGOS::Obj void AddUnitToNotify(Unit* unit); void RemoveUnitFromNotify(int32 slot); - void RelocationNotify(); void SendToPlayers(WorldPacket const* data) const; |