Localized fix to its own field

This commit is contained in:
Boondorl 2023-01-19 15:44:41 -05:00 committed by Rachael Alexanderson
commit fe1acc7f40
5 changed files with 13 additions and 11 deletions

View file

@ -285,7 +285,7 @@ void FLevelLocals::ClearLevelData(bool fullgc)
auto it = GetThinkerIterator<AActor>(NAME_None, STAT_TRAVELLING);
for (AActor *actor = it.Next(); actor != nullptr; actor = it.Next())
{
actor->BlockingLine = nullptr;
actor->BlockingLine = actor->MovementBlockingLine = nullptr;
actor->BlockingFloor = actor->BlockingCeiling = actor->Blocking3DFloor = nullptr;
}
}