Server.Mobiles.PlayerMobile.OnBeforeDeath C# (CSharp) 메소드

OnBeforeDeath() 공개 메소드

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

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

            DropHolding();

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

            return base.OnBeforeDeath();
        }