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 21e6a26785d..5feea0db084 100644
--- a/src/game/Map.cpp
+++ b/src/game/Map.cpp
@@ -377,6 +377,7 @@ void Map::AddNotifier(T*)
template<>
void Map::AddNotifier(Player* obj)
{
+ obj->m_Notified = false;
obj->m_IsInNotifyList = false;
AddUnitToNotify(obj);
}
@@ -384,6 +385,7 @@ void Map::AddNotifier(Player* obj)
template<>
void Map::AddNotifier(Creature* obj)
{
+ obj->m_Notified = false;
obj->m_IsInNotifyList = false;
AddUnitToNotify(obj);
}