From a87120c155c48fa45b20a97c1a58bdbeb77318b7 Mon Sep 17 00:00:00 2001
From: client_Wu Xijin <364452445@qq.com>
Date: 星期三, 20 二月 2019 16:54:13 +0800
Subject: [PATCH] 3335 物品相关类型重构
---
System/Compose/New/SelectEquipModel.cs | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/System/Compose/New/SelectEquipModel.cs b/System/Compose/New/SelectEquipModel.cs
index 42a3085..ce4d407 100644
--- a/System/Compose/New/SelectEquipModel.cs
+++ b/System/Compose/New/SelectEquipModel.cs
@@ -53,7 +53,7 @@
if (singlePack == null) return null;
int[] unfixedIds = composeWinModel.CurComposeModel.unfixedItemID;
- allBagItemInfo = singlePack.GetPackModelIndexDict();
+ allBagItemInfo = singlePack.GetAllItems();
_unfixedItemDict.Clear();
foreach (int key in allBagItemInfo.Keys)
{
@@ -93,7 +93,7 @@
SinglePackModel singlePack = playerPack.GetSinglePackModel(packType);
if (singlePack == null) return null;
- allBagItemInfo = singlePack.GetPackModelIndexDict();
+ allBagItemInfo = singlePack.GetAllItems();
List<ItemModel> modellist = allBagItemInfo.Values.ToList();
modellist.Sort(CompareByCondition);
_addonsItemDict.Clear();
--
Gitblit v1.8.0