From fb86600c411e628bdf36461783c21c84a8e285c5 Mon Sep 17 00:00:00 2001 From: hxp <ale99527@vip.qq.com> Date: 星期三, 31 七月 2019 15:03:49 +0800 Subject: [PATCH] 8187 【后端】【主干】优化仙盟宴会体验 --- ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Player/PlayerEventCounter.py | 6 ++++++ 1 files changed, 6 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 3a55786..0f2e87a 100644 --- a/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Player/PlayerEventCounter.py +++ b/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Player/PlayerEventCounter.py @@ -1283,6 +1283,12 @@ PyGameData.g_familyPartyInfo = eval(msgValue) return + if key == ShareDefine.Def_Notify_WorldKey_FamilyPartyAddFamilyActivity: + mapID, familyID, addFamilyActivity = eval(msgValue) + if GameWorld.GetMap().GetMapID() == mapID: + GameLogic_FamilyParty.DoAddFamilyMemberFamilyActivity(familyID, addFamilyActivity) + return + if key == ShareDefine.Def_Notify_WorldKey_AddFamilyAuctionItem: mapID, familyAuctionItemDict = eval(msgValue) if GameWorld.GetMap().GetMapID() == mapID: -- Gitblit v1.8.0