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/MapInstanced.cpp | |
parent | eb219b08e28e1df29ecabb8b836e83eaa33bfc42 (diff) |
*Fix the bug that players cannot see anything in instance.
--HG--
branch : trunk
Diffstat (limited to 'src/game/MapInstanced.cpp')
-rw-r--r-- | src/game/MapInstanced.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/game/MapInstanced.cpp b/src/game/MapInstanced.cpp index df0fca8016c..ca106d6506c 100644 --- a/src/game/MapInstanced.cpp +++ b/src/game/MapInstanced.cpp @@ -77,6 +77,12 @@ void MapInstanced::RemoveAllObjectsInRemoveList() Map::RemoveAllObjectsInRemoveList(); } +void MapInstanced::RelocationNotify() +{ + for (InstancedMaps::iterator i = m_InstancedMaps.begin(); i != m_InstancedMaps.end(); ++i) + i->second->RelocationNotify(); +} + bool MapInstanced::RemoveBones(uint64 guid, float x, float y) { bool remove_result = false; |