diff options
author | megamage <none@none> | 2009-04-04 15:14:19 -0600 |
---|---|---|
committer | megamage <none@none> | 2009-04-04 15:14:19 -0600 |
commit | 96f2363b04e599558a19295a008e048f3b7ac446 (patch) | |
tree | 3cfbc21d367a8a650d8c88691154c03ff2be1a66 /src/game/Map.cpp | |
parent | 86bd3bfb422a299d6e0aac0f196ba4fea9affbc4 (diff) |
*Add a missing part of visibility patch.
--HG--
branch : trunk
Diffstat (limited to 'src/game/Map.cpp')
-rw-r--r-- | src/game/Map.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/game/Map.cpp b/src/game/Map.cpp index 5feea0db084..20e5dd70ebc 100644 --- a/src/game/Map.cpp +++ b/src/game/Map.cpp @@ -625,7 +625,7 @@ void Map::RelocationNotify() for(std::vector<Unit*>::iterator iter = i_unitsToNotify.begin(); iter != i_unitsToNotify.end(); ++iter) { Unit *unit = *iter; - if(!unit->IsInWorld() || unit->GetMapId() != GetId()) + if(unit->m_Notified || !unit->IsInWorld() || unit->GetMapId() != GetId()) continue; unit->m_IsInNotifyList = false; |