From 94ca00f866c8c947240cfbfaa399a88bdd05f62b Mon Sep 17 00:00:00 2001 From: hxp <ale99527@vip.qq.com> Date: 星期一, 01 二月 2021 14:47:01 +0800 Subject: [PATCH] 8716 【主干】【后端】【BT2】H.活动-节日祈愿(增加节日游历); --- ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Player/ChPlayer.py | 6 ++++++ 1 files changed, 6 insertions(+), 0 deletions(-) diff --git a/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Player/ChPlayer.py b/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Player/ChPlayer.py index f15e221..3005231 100644 --- a/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Player/ChPlayer.py +++ b/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Player/ChPlayer.py @@ -80,6 +80,7 @@ import PlayerBossReborn import PlayerWeekParty import PlayerFeastWeekParty +import PlayerFeastTravel import PlayerFeastLogin import PlayerFeastWish import PlayerActLogin @@ -703,6 +704,8 @@ PlayerFeastLogin.OnPlayerLogin(curPlayer) # 节日祝福活动 PlayerFeastWish.OnPlayerLogin(curPlayer) + # 节日游历活动 + PlayerFeastTravel.OnPlayerLogin(curPlayer) # 登录奖励活动 PlayerActLogin.OnLogin(curPlayer) # 仙界盛典活动 @@ -5410,6 +5413,9 @@ # 领取节日登录奖励 elif rewardType == ChConfig.Def_RewardType_FeastLogin: PlayerFeastLogin.GetFeastLoginAward(curPlayer, dataEx) + # 领取节日游历奖励 + elif rewardType == ChConfig.Def_RewardType_FeastTravel: + PlayerFeastTravel.GetFeastTravelAward(curPlayer, dataEx) # 领取跨服充值排行活动达标奖励 elif rewardType == ChConfig.Def_RewardType_CACTGBillboardDabiao: CrossActCTGBillboard.GetDabiaoAward(curPlayer, dataEx) -- Gitblit v1.8.0