Server.Mobiles.BaseCreature.OnDelete C# (CSharp) Method

OnDelete() public method

public OnDelete ( ) : void
return void
        public override void OnDelete()
        {
            Mobile m = m_ControlMaster;

            SetControlMaster( null );
            SummonMaster = null;

            if ( m_ReceivedHonorContext != null )
                m_ReceivedHonorContext.Cancel();

            base.OnDelete();

            if ( m != null )
                m.InvalidateProperties();
        }
BaseCreature