From 92126566b642cdb2be53291c8e8e64c7a623782e Mon Sep 17 00:00:00 2001
From: hxp <ale99527@vip.qq.com>
Date: 星期二, 22 一月 2019 20:38:34 +0800
Subject: [PATCH] 5931 【后端】【1.5.100】诛仙装备开发(学习神技广播)

---
 ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Player/PlayerFlashSale.py |    7 +++++--
 1 files changed, 5 insertions(+), 2 deletions(-)

diff --git a/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Player/PlayerFlashSale.py b/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Player/PlayerFlashSale.py
index 5015528..8b42cff 100644
--- a/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Player/PlayerFlashSale.py
+++ b/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Player/PlayerFlashSale.py
@@ -162,7 +162,7 @@
     if len(startTimeList) != len(endTimeList):
         GameWorld.ErrLog("限时抢购开关时间时分配置错误!cfgID=%s" % cfgID)
         return
-    
+    job = curPlayer.GetJob()
     openServerDay = GameWorld.GetGameWorld().GetGameWorldDictByKey(ShareDefine.Def_Notify_WorldKey_ServerDay) + 1
     packInfo = ChPyNetSendPack.tagMCFlashSaleInfo()
     packInfo.StartDate = GameWorld.GetOperationActionDateStr(flashSaleIpyData.GetStartDate(), openServerDay)
@@ -197,7 +197,10 @@
                 giftBag.MoneyType = itemIpyData.GetMoneyType()
                 giftBag.MoneyNumber = itemIpyData.GetMoneyNum()
                 giftBag.MoneyOriginal = itemIpyData.GetMoneyOriginal()
-                giftBag.ItemID = itemIpyData.GetItemID()
+                itemID = itemIpyData.GetItemID()
+                jobItemList = itemIpyData.GetJobItem()
+                jobItemID = FunctionNPCCommon.GetShopJobItem(job, itemID, jobItemList)
+                giftBag.ItemID = jobItemID
                 giftBag.ItemCount = itemIpyData.GetItemCnt()
                 giftBag.IsBind = itemIpyData.GetIsBind()
                 shop.GiftbagInfo.append(giftBag)

--
Gitblit v1.8.0