From 022d5f4d5ce8a9d057eaf76d02ea9591b5cf9912 Mon Sep 17 00:00:00 2001
From: Client_PangDeRong <593317293@qq.com>
Date: 星期二, 09 十月 2018 11:47:56 +0800
Subject: [PATCH] 1834 分解装备时获得物品,分解了错误的物品
---
System/KnapSack/Logic/PackModelInterface.cs | 3 ++-
1 files changed, 2 insertions(+), 1 deletions(-)
diff --git a/System/KnapSack/Logic/PackModelInterface.cs b/System/KnapSack/Logic/PackModelInterface.cs
index e1b454a..aa04277 100644
--- a/System/KnapSack/Logic/PackModelInterface.cs
+++ b/System/KnapSack/Logic/PackModelInterface.cs
@@ -1213,8 +1213,9 @@
/// <param name="_oneKeySelllist"></param>
public void SendOneKeySellQuest(List<ItemModel> _oneKeySelllist)
{
- if (!isPackResetOk) return;
+ if (!isPackResetOk || SettingEffectMgr.Instance.isStartOneKeySell) return;
+ SettingEffectMgr.Instance.isStartOneKeySell = true;
byte[] itemIndexs = new byte[_oneKeySelllist.Count];
int i = 0;
for (i = 0; i < _oneKeySelllist.Count; i++)
--
Gitblit v1.8.0