diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/game/Map.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/game/Map.cpp b/src/game/Map.cpp index 47925102892..2321e130301 100644 --- a/src/game/Map.cpp +++ b/src/game/Map.cpp @@ -657,6 +657,8 @@ void Map::RemoveUnitFromNotify(Unit *unit, int32 slot) i_unitsToNotifyBacklog[slot] = NULL; else if(slot < i_unitsToNotify.size() && i_unitsToNotify[slot] == unit) i_unitsToNotify[slot] = NULL; + else + assert(false); } else { |