Server.Mobiles.PlayerMobile.OnBeforeDeath C# (CSharp) Method

OnBeforeDeath() public method

public OnBeforeDeath ( ) : bool
return bool
        public override bool OnBeforeDeath()
        {
            NetState state = NetState;

            if (state != null)
                state.CancelAllTrades();

            DropHolding();

            m_EquipSnapshot = new List<Item>(this.Items);

            return base.OnBeforeDeath();
        }