From 7edbbb07b1e442a11a65c76b48f8238ffb520d79 Mon Sep 17 00:00:00 2001 From: hxp <ale99527@vip.qq.com> Date: 星期四, 12 三月 2020 12:05:27 +0800 Subject: [PATCH] 8399 每日灵石礼包修改(改为运营活动) --- ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Player/ChPlayer.py | 5 ++++- 1 files changed, 4 insertions(+), 1 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 f16d602..9273980 100644 --- a/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Player/ChPlayer.py +++ b/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Player/ChPlayer.py @@ -97,6 +97,7 @@ import GameLogic_XMZZ import PlayerFlashSale import PlayerFlashGiftbag +import PlayerDailyGiftbag import PlayerCostRebate import PlayerActTotalRecharge import PlayerSpringSale @@ -634,6 +635,8 @@ PlayerSpringSale.OnPlayerLogin(curPlayer) #限时礼包 PlayerFlashGiftbag.OnPlayerLogin(curPlayer) + #每日礼包 + PlayerDailyGiftbag.OnPlayerLogin(curPlayer) #限时抢购 PlayerFlashSale.OnPlayerLogin(curPlayer) # 世界boss @@ -5296,7 +5299,7 @@ PlayerActivity.GetActivityPlaceReward(curPlayer) # 每日免费直购礼包 elif rewardType == ChConfig.Def_RewardType_DayFreeGoldGift: - PlayerCoin.OnGetDayFreeGoldGift(curPlayer) + PlayerDailyGiftbag.OnGetDailyFreeGiftbag(curPlayer) # 仙盟活跃度奖励 elif rewardType == ChConfig.Def_RewardType_FamilyActivity: PlayerFamily.GetFamilyActivityAward(curPlayer, dataEx) -- Gitblit v1.8.0