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/Realm/RealmBossShow.cs |    8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/System/Realm/RealmBossShow.cs b/System/Realm/RealmBossShow.cs
index 85f2a0e..7bf1dc3 100644
--- a/System/Realm/RealmBossShow.cs
+++ b/System/Realm/RealmBossShow.cs
@@ -116,16 +116,16 @@
             var _job = PlayerDatas.Instance.baseData.Job;
             #region 瑁呭
             var clothes = playerPack.GetItemModelByIndex(PackType.Equip, (int)RoleEquipType.Clothes);
-            var _clothesId = clothes == null ? 0 : (int)clothes.itemInfo.ItemID;
+            var _clothesId = clothes == null ? 0 : (int)clothes.itemId;
 
             var secondary = playerPack.GetItemModelByIndex(PackType.Equip, (int)RoleEquipType.Weapon2);
-            var _secondaryId = secondary == null ? 0 : (int)secondary.itemInfo.ItemID;
+            var _secondaryId = secondary == null ? 0 : (int)secondary.itemId;
 
             var fashionClothes = playerPack.GetItemModelByIndex(PackType.Equip, (int)RoleEquipType.FashionClothes);
-            var fashionClothesId = fashionClothes == null ? 0 : (int)fashionClothes.itemInfo.ItemID;
+            var fashionClothesId = fashionClothes == null ? 0 : (int)fashionClothes.itemId;
 
             var fashionSecondary = playerPack.GetItemModelByIndex(PackType.Equip, (int)RoleEquipType.FashionWeapon2);
-            var fashionSecondaryId = fashionSecondary == null ? 0 : (int)fashionSecondary.itemInfo.ItemID;
+            var fashionSecondaryId = fashionSecondary == null ? 0 : (int)fashionSecondary.itemId;
             #endregion
 
             showPoint = m_HeroStage;

--
Gitblit v1.8.0