- replaced all TThinkerIterators except one that probably won't be relevant anymore as things progress.

This commit is contained in:
Christoph Oelckers 2019-01-30 00:27:05 +01:00
commit 78b7b64237
10 changed files with 30 additions and 28 deletions

View file

@ -945,7 +945,8 @@ static void PrintFilteredActorList(const ActorTypeChecker IsActorType, const cha
}
}
}
TThinkerIterator<AActor> it;
// This only works on the primary level.
auto it = currentUILevel->GetThinkerIterator<AActor>();
while ( (mo = it.Next()) )
{