Fixed missing ref in MoveBehaviors

This commit is contained in:
Boondorl 2025-01-23 10:27:44 -05:00 committed by Ricardo Luís Vaz Silva
parent f301e6cc0f
commit 08de93b2fa

View file

@ -643,7 +643,7 @@ void AActor::MoveBehaviors(AActor& from)
continue;
}
auto owner = b->PointerVar<AActor>(NAME_Owner);
auto& owner = b->PointerVar<AActor>(NAME_Owner);
owner = this;
}