Skip to content
This repository has been archived by the owner on Jan 5, 2024. It is now read-only.

Commit

Permalink
More accurate tracking, we shouldn't be clearing known MOs here
Browse files Browse the repository at this point in the history
  • Loading branch information
Causeless committed Dec 26, 2023
1 parent eb9e300 commit cbf6c5b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Managers/MovableMan.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -305,7 +305,8 @@ void MovableMan::PurgeAllMOs()
m_AddedAlarmEvents.clear();
m_AlarmEvents.clear();
m_MOIDIndex.clear();
m_KnownObjects.clear();
// We want to keep known objects around, 'cause these can exist even when not in the simulation (they're here from creation till deletion, regardless of whether they are in sim)
//m_KnownObjects.clear();
}


Expand Down

0 comments on commit cbf6c5b

Please sign in to comment.