mirror of
https://github.com/ZDoom/gzdoom.git
synced 2025-04-05 17:32:40 +00:00
Make DBehavior final
Specifics should be implemented in ZScript.
This commit is contained in:
parent
3d6506df5b
commit
ad87477650
2 changed files with 3 additions and 3 deletions
|
@ -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
|
||||
|
|
|
@ -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);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue