| System/KnapSack/Logic/ItemLogicUtility.cs | ●●●●● 补丁 | 查看 | 原始文档 | 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; } } }