少年修仙传客户端代码仓库
client_Wu Xijin
2019-03-15 6aac9a1a950c16ea7c30c0fcd56427eb23a41620
3335 更新装备tips界面.
1个文件已修改
10 ■■■■■ 已修改文件
System/KnapSack/Logic/ItemLogicUtility.cs 10 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
System/KnapSack/Logic/ItemLogicUtility.cs
@@ -251,14 +251,16 @@
        private Dictionary<int, int> GetEquipLegendProperties(int itemId)
        {
            var legendProperties = LegendPropertyUtility.GetEquipProperties(itemId);
            var legendProperties = LegendPropertyUtility.GetEquipProperties(itemId);
            var properties = new Dictionary<int, int>();
            if (legendProperties != null)
            {
                foreach (var item in legendProperties)
                if (legendProperties != null)
                {
                    properties[item.x] = item.y;
                    foreach (var item in legendProperties)
                    {
                        properties[item.x] = item.y;
                    }
                }
            }