Make DBehavior final

Specifics should be implemented in ZScript.
This commit is contained in:
Boondorl 2025-01-25 09:51:28 -05:00 committed by Ricardo Luís Vaz Silva
parent 3d6506df5b
commit ad87477650
2 changed files with 3 additions and 3 deletions

View file

@ -778,7 +778,7 @@ public:
void Serialize(FSerializer& arc) override;
};
class DBehavior : public DObject
class DBehavior final : public DObject
{
DECLARE_CLASS(DBehavior, DObject)
HAS_OBJECT_POINTERS

View file

@ -665,10 +665,10 @@ void AActor::MoveBehaviors(AActor& from)
}
b->Owner = this;
if (b->Level != b->Owner->Level)
if (b->Level != Level)
{
b->Level->RemoveActorBehavior(*b);
b->Owner->Level->AddActorBehavior(*b);
Level->AddActorBehavior(*b);
}
}