少年修仙传客户端代码仓库
client_Zxw
2019-03-21 5fd906adaa44a3663cd2d243b76168c745d67f8d
System/Auction/AuctionHelpModel.cs
@@ -189,6 +189,10 @@
            int score = -1;
            string equipGuid = string.Empty;
            var equipSet = equipModel.GetEquipSet(equipLevel);
            if (equipSet == null)
            {
                return -1;
            }
            equipGuid = equipSet.GetEquip(equipPlace);
            var equiped = !string.IsNullOrEmpty(equipGuid);
            if (equiped)
@@ -199,14 +203,14 @@
            return score;
        }
        public bool WhetherEquipped(int equipLevel, int equipPlace)//是否装备
        public bool WhetherEquipped(int equipLevel, int equipPlace)//是否显示需要
        {
            bool isBool = false;
            string equipGuid = string.Empty;
            var equipSet = equipModel.GetEquipSet(equipLevel);
            if (equipSet == null)
            {
                return false;
                return true;
            }
            equipGuid = equipSet.GetEquip(equipPlace);
            isBool = !string.IsNullOrEmpty(equipGuid);