From ef58c3d388226b92c69c83e60e7c67a892e3d229 Mon Sep 17 00:00:00 2001
From: hxp <ale99527@vip.qq.com>
Date: 星期四, 07 三月 2019 14:23:05 +0800
Subject: [PATCH] 6332 【后端】【2.0】主要是拍品相关规则调整及背包优化(GetOutPutItemObj 默认都给非拍品)

---
 ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/NPC/NPCCommon.py |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/NPC/NPCCommon.py b/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/NPC/NPCCommon.py
index c17651a..0120100 100644
--- a/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/NPC/NPCCommon.py
+++ b/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/NPC/NPCCommon.py
@@ -495,7 +495,7 @@
         
         if ItemCommon.GetIsEquip(itemData):
             for _ in xrange(itemCount):
-                curItem = ItemControler.GetOutPutItemObj(itemID, isBind=isBind)
+                curItem = ItemControler.GetOutPutItemObj(itemID)
                 if curItem:
                     needSpace += 1
                     prizeItemList.append(curItem)
@@ -541,7 +541,7 @@
             index += 1
             if isinstance(curItem, list):
                 itemID, itemCount, isBind = curItem
-                curItem = ItemControler.GetOutPutItemObj(itemID, itemCount, isBind)
+                curItem = ItemControler.GetOutPutItemObj(itemID, itemCount, False)
                 
             if not curItem:
                 continue

--
Gitblit v1.8.0