aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/game/Map.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/game/Map.cpp b/src/game/Map.cpp
index 7fd289d8a37..29b7515750e 100644
--- a/src/game/Map.cpp
+++ b/src/game/Map.cpp
@@ -353,6 +353,7 @@ void Map::AddNotifier(T*)
template<>
void Map::AddNotifier(Player* obj)
{
+ obj->m_Notified = false;
obj->m_IsInNotifyList = false;
AddUnitToNotify(obj);
}
@@ -360,6 +361,7 @@ void Map::AddNotifier(Player* obj)
template<>
void Map::AddNotifier(Creature* obj)
{
+ obj->m_Notified = false;
obj->m_IsInNotifyList = false;
AddUnitToNotify(obj);
}