From 68e048256ca3e40cbc6e73cfd0937663cd41d63c Mon Sep 17 00:00:00 2001
From: hxp <ale99527@vip.qq.com>
Date: 星期五, 27 十二月 2019 20:50:44 +0800
Subject: [PATCH] Merge branch 'master' of http://mobile.173on.com:10010/r/SnxxServerCode

---
 ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Player/PlayerAuctionHouse.py |    4 +++-
 1 files changed, 3 insertions(+), 1 deletions(-)

diff --git a/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Player/PlayerAuctionHouse.py b/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Player/PlayerAuctionHouse.py
index d0025ce..c3fe1c7 100644
--- a/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Player/PlayerAuctionHouse.py
+++ b/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Player/PlayerAuctionHouse.py
@@ -216,12 +216,14 @@
     '''
     GameWorld.Log("上架系统拍品: %s" % sysAuctionItemList)
     
-    itemCount = 1 # 系统拍品,默认上架一个
     isAuctionItem = True
     auctionItemList = []
     for sysAuctionItemInfo in sysAuctionItemList:
+        itemCount = 1 # 系统拍品,默认上架一个
         if type(sysAuctionItemInfo) == int:
             itemID = sysAuctionItemInfo
+        elif type(sysAuctionItemInfo) == list and len(sysAuctionItemInfo) == 2:
+            itemID, itemCount = sysAuctionItemInfo
         elif type(sysAuctionItemInfo) == list and len(sysAuctionItemInfo) >= 5:
             classLV, color, placeList, isSuit, star = sysAuctionItemInfo[:5]
             if star:

--
Gitblit v1.8.0