ACR_CreatureBehavior.CreatureObject.OnRundown C# (CSharp) Method

OnRundown() public method

Called when the C# object state is being run down because the game engine half of the object has been deleted. This might occur after the fact.
public OnRundown ( ) : void
return void
        public override void OnRundown()
        {
            if (Party != null)
                Party.RemovePartyMember(this);
        }