少年修仙传客户端代码仓库
client_Wu Xijin
2019-03-20 30281e2d5392799e2bd6f7e25f18b5897adf7b8a
6370 【前端】【2.0】删除职业阶设定
2个文件已修改
3 ■■■■ 已修改文件
System/KnapSack/Logic/ItemLogicUtility.cs 1 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
System/KnapSack/Logic/SinglePack.cs 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
System/KnapSack/Logic/ItemLogicUtility.cs
@@ -22,7 +22,6 @@
        private Dictionary<int, List<int>> betterEquipExceptDungeonDict;
        PackModel playerPack { get { return ModelCenter.Instance.GetModel<PackModel>(); } }
        ItemTipsModel itemTipsModel { get { return ModelCenter.Instance.GetModel<ItemTipsModel>(); } }
        BuffModel buffDatas { get { return ModelCenter.Instance.GetModel<BuffModel>(); } }
        MountModel mountDatas { get { return ModelCenter.Instance.GetModel<MountModel>(); } }
        PetModel petDatas { get { return ModelCenter.Instance.GetModel<PetModel>(); } }
System/KnapSack/Logic/SinglePack.cs
@@ -108,7 +108,7 @@
                var qualityValid = filterParams.qualitys == null || filterParams.qualitys.Contains(item.config.ItemColor);
                var typeValid = filterParams.itemTypes == null || filterParams.itemTypes.Contains(item.config.Type);
                var equipTypeValid = filterParams.equipTypes == null || filterParams.equipTypes.Contains(item.config.EquipPlace);
                var jobValid = filterParams.job == 0 || filterParams.job == item.config.JobLimit / 100;
                var jobValid = filterParams.job == 0 || filterParams.job == item.config.JobLimit;
                var auctionValid = filterParams.isAuction == item.isAuction;
                if (levelValid && qualityValid && typeValid && equipTypeValid && jobValid && auctionValid)