From 283a720f06b0834b71ce8413a28caf24eeedc017 Mon Sep 17 00:00:00 2001
From: client_Wu Xijin <364452445@qq.com>
Date: 星期二, 19 二月 2019 23:43:01 +0800
Subject: [PATCH] 3335 物品管理相关功能重构。

---
 System/Chat/ChatCtrl.cs |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/System/Chat/ChatCtrl.cs b/System/Chat/ChatCtrl.cs
index a1d1b73..76c7dfc 100644
--- a/System/Chat/ChatCtrl.cs
+++ b/System/Chat/ChatCtrl.cs
@@ -853,12 +853,12 @@
             var _length = _textBuilder.Length;
             if (i < itemPlaceList.Count)
             {
-                ItemConfig cfg = ItemConfig.Get((int)itemPlaceList[i].itemInfo.ItemID);
+                ItemConfig cfg = ItemConfig.Get((int)itemPlaceList[i].itemId);
                 if (cfg.ItemName == matchArray[i].Groups[1].Value)
                 {
                     bool equip = itemPlaceList[i].packType == PackType.Equip;
                     uint[] stones = equip ? PlayerStoneData.Instance.GetStoneInfo(itemPlaceList[i].itemInfo.ItemPlace) : null;
-                    _textBuilder.Append(StringUtility.Contact("#item#", itemPlaceList[i].itemInfo.ItemID,
+                    _textBuilder.Append(StringUtility.Contact("#item#", itemPlaceList[i].itemId,
                                                               "|", itemPlaceList[i].itemInfo.IsBind,
                                                               "|", itemPlaceList[i].itemInfo.ItemCount,
                                                               "|", stones != null ? LitJson.JsonMapper.ToJson(stones) :

--
Gitblit v1.8.0