From c85f18cc648b69fe4e3b5d963a0da52dfdd39f42 Mon Sep 17 00:00:00 2001
From: client_Wu Xijin <364452445@qq.com>
Date: 星期四, 11 十月 2018 10:37:01 +0800
Subject: [PATCH] Merge branch 'master' of http://192.168.0.87:10010/r/snxxz_scripts
---
System/KnapSack/Logic/ItemTipsModel.cs | 8 ++++++--
1 files changed, 6 insertions(+), 2 deletions(-)
diff --git a/System/KnapSack/Logic/ItemTipsModel.cs b/System/KnapSack/Logic/ItemTipsModel.cs
index ad44350..fcf71dc 100644
--- a/System/KnapSack/Logic/ItemTipsModel.cs
+++ b/System/KnapSack/Logic/ItemTipsModel.cs
@@ -1092,7 +1092,6 @@
}
return s;
}
-
#endregion
#region 璁剧疆浼犲灞炴��
@@ -2023,11 +2022,16 @@
if(type == PackType.rptDogzEquip || type == PackType.rptDogzItem)
{
+ strengthDataDict = new Dictionary<int, int>();
if (GetUseDataModel((int)ItemUseDataKey.Def_IudetDogzEquipPlus) != null)
{
StrengthLV = GetUseDataModel((int)ItemUseDataKey.Def_IudetDogzEquipPlus)[0];
}
- strengthDataDict = beastModel.SiteEnhancementAttribute(type,index);
+ Dictionary<int,int> getStregthDict = beastModel.SiteEnhancementAttribute(type,index);
+ foreach(var key in getStregthDict.Keys)
+ {
+ strengthDataDict.Add(key,getStregthDict[key]);
+ }
}
SetWinType();
--
Gitblit v1.8.0