少年修仙传客户端代码仓库
client_Wu Xijin
2019-02-20 a87120c155c48fa45b20a97c1a58bdbeb77318b7
System/Strengthening/EquipSuit/PlayerSuitModel.cs
@@ -156,7 +156,7 @@
                return orderlist;
            }
            equipDict = singlePack.GetPackModelIndexDict();
            equipDict = singlePack.GetAllItems();
            for(int i = 0; i < suitPartlist.Count; i++)
            {
                if(equipDict.ContainsKey(suitPartlist[i]))
@@ -470,7 +470,7 @@
            if (PlayerDatas.Instance.baseData.Job != job && job != 0)
                return sumNumber;
            Dictionary<int, ItemModel> equipDict = singlePack.GetPackModelIndexDict();
            Dictionary<int, ItemModel> equipDict = singlePack.GetAllItems();
            foreach (ItemModel model in equipDict.Values)
            {
                if (GetGroupType(model.itemPlace) == GetGroupType(equipPlace))
@@ -509,7 +509,7 @@
            if (singlePack == null)
                return sumCnt;
            Dictionary<int, ItemModel> equipDict = singlePack.GetPackModelIndexDict();
            Dictionary<int, ItemModel> equipDict = singlePack.GetAllItems();
            foreach (ItemModel model in equipDict.Values)
            {
                Dictionary<int, int> suitTypeDic = GetServerSuitModelByPlace(model.itemPlace);
@@ -1044,7 +1044,7 @@
            SinglePackModel singlePack = playerPack.GetSinglePackModel(PackType.Equip);
            if (singlePack == null) return 0;
            Dictionary<int, ItemModel> dic = singlePack.GetPackModelIndexDict();
            Dictionary<int, ItemModel> dic = singlePack.GetAllItems();
            List<int> placelist = new List<int>();
            placelist.AddRange(suitPartlist);
            placelist.Sort(CompareBySuitLv);