From 2cf69f0d864fc57a76321abadfbc68e97c840547 Mon Sep 17 00:00:00 2001
From: hxp <ale99527@vip.qq.com>
Date: 星期二, 15 十月 2024 17:03:11 +0800
Subject: [PATCH] 5328 【越南】【英文】【砍树】神兽装备格子拓展(扩展为150格)

---
 ServerPython/CoreServerGroup/GameServer/Script/Player/PlayerNewFairyCeremony.py |   12 ++++++------
 1 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/ServerPython/CoreServerGroup/GameServer/Script/Player/PlayerNewFairyCeremony.py b/ServerPython/CoreServerGroup/GameServer/Script/Player/PlayerNewFairyCeremony.py
index 77e34a0..0d9baae 100644
--- a/ServerPython/CoreServerGroup/GameServer/Script/Player/PlayerNewFairyCeremony.py
+++ b/ServerPython/CoreServerGroup/GameServer/Script/Player/PlayerNewFairyCeremony.py
@@ -51,7 +51,7 @@
     billboardCnt = billBoard.GetCount()
     
     for index in range(0, billboardCnt):
-        ipyData = IpyGameDataPY.GetIpyGameData('UniquenessArrive', worldLvNum, index + 1)
+        ipyData = IpyGameDataPY.GetIpyGameData('NewUniquenessArrive', worldLvNum, index + 1)
         if not ipyData:
             break
         objBillboard = billBoard.At(index)
@@ -63,7 +63,7 @@
             continue
         
         awardList = awardInfoDict[str(job)]
-        PlayerCompensation.SendMailByKey('CeremonyRank', [playerID], awardList, [objBillboard.GetName1(), index + 1])
+        PlayerCompensation.SendMailByKey('NewCeremonyRank', [playerID], awardList, [objBillboard.GetName1(), index + 1])
         
     GameWorld.DebugLog('    活动结束  绝版降临给奖励  worldLvNum=%s, billboardCnt=%s' % (worldLvNum, billboardCnt))
     return
@@ -71,7 +71,7 @@
 def __GetFCWorldLVIndex(fcType):
     #获取活动世界等级档
     playerFCWorldLV = PlayerDBGSEvent.GetDBGSTrig_ByKey(PlayerDBGSEvent.Def_OActWorldLV % ShareDefine.OperationActionName_NewFairyCeremony)
-    fcWorldlvDict = IpyGameDataPY.GetFuncEvalCfg('CeremonyWorldLv', 1, {})
+    fcWorldlvDict = IpyGameDataPY.GetFuncEvalCfg('NewCeremonyWorldLv', 1, {})
     if str(fcType) not in fcWorldlvDict:
         return 0
     worldLVIndex = 0
@@ -88,11 +88,11 @@
     if not ipyData:
         return
     
-    openServerDay = PlayerDBGSEvent.GetDBGSTrig_ByKey(PlayerDBGSEvent.Def_ServerDay) + 1
+    startDateStr, endDateStr = GameWorld.GetOperationActionDateStr(ipyData)
     NewFairyCeremonyInfo = ChPyNetSendPack.tagGCNewFairyCeremonyInfo()
     NewFairyCeremonyInfo.Clear()
-    NewFairyCeremonyInfo.StartDate = GameWorld.GetOperationActionDateStr(ipyData.GetStartDate(), openServerDay)
-    NewFairyCeremonyInfo.EndtDate = GameWorld.GetOperationActionDateStr(ipyData.GetEndDate(), openServerDay)
+    NewFairyCeremonyInfo.StartDate = startDateStr
+    NewFairyCeremonyInfo.EndtDate = endDateStr
     NewFairyCeremonyInfo.WorldLV = PlayerDBGSEvent.GetDBGSTrig_ByKey(PlayerDBGSEvent.Def_OActWorldLV % ShareDefine.OperationActionName_NewFairyCeremony)
     NewFairyCeremonyInfo.LimitLV = ipyData.GetLVLimit()
     NewFairyCeremonyInfo.ResetType = ipyData.GetResetType()

--
Gitblit v1.8.0