From 61bae8814450e86b1851cb892086b7081a675ff1 Mon Sep 17 00:00:00 2001 From: hxp <ale99527@vip.qq.com> Date: 星期二, 25 六月 2024 16:08:13 +0800 Subject: [PATCH] 10185 【越南】【港台】【主干】BOSS凭证修改 --- ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Player/PlayerEventCounter.py | 9 +++++++++ 1 files changed, 9 insertions(+), 0 deletions(-) diff --git a/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Player/PlayerEventCounter.py b/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Player/PlayerEventCounter.py index 35f6a31..c3a687a 100644 --- a/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Player/PlayerEventCounter.py +++ b/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Player/PlayerEventCounter.py @@ -624,6 +624,8 @@ PlayerWishingWell.OnDay(curPlayer) #通天令 PlayerTongTianLing.OnDay(curPlayer, onEventType) + #boss凭证 + PlayerActBossTrial.PlayerOnDay(curPlayer, onEventType) return @@ -1513,12 +1515,19 @@ actInfoDict = PyGameData.g_crossActInfoDict[actionName] actInfoDict.update(eval(msgValue)) + if GameWorld.IsCrossServer(): + #GameWorld.DebugLog("跨服服务器地图,不处理") + return + if actionName == ShareDefine.CrossActName_CTGBillboard: CrossActCTGBillboard.RefreshCrossActCTGBillboardInfo() elif actionName == ShareDefine.CrossActName_AllRecharge: CrossActAllRecharge.RefreshCrossActAllRechargeInfo() + elif actionName == ShareDefine.CrossActName_BossTrial: + PlayerActBossTrial.RefreshCrossActBossTrialInfo() + return if key == ShareDefine.Def_Notify_WorldKey_CrossZoneName: -- Gitblit v1.8.0