From b7c75e875f535aa4443ac053529eccfbd07e3d17 Mon Sep 17 00:00:00 2001 From: hxp <ale99527@vip.qq.com> Date: 星期五, 19 二月 2021 18:50:53 +0800 Subject: [PATCH] 4935 【主干】【BT】【BT2】【BTZF】自动开服引起跨服boss报错bug --- ServerPython/CoreServerGroup/GameServer/Script/PyGameData.py | 9 +++++++++ 1 files changed, 9 insertions(+), 0 deletions(-) diff --git a/ServerPython/CoreServerGroup/GameServer/Script/PyGameData.py b/ServerPython/CoreServerGroup/GameServer/Script/PyGameData.py index 246e322..ffed8aa 100644 --- a/ServerPython/CoreServerGroup/GameServer/Script/PyGameData.py +++ b/ServerPython/CoreServerGroup/GameServer/Script/PyGameData.py @@ -83,10 +83,17 @@ g_fbHelpBattleCheckInPlayerDict = {} # 副本助战玩家登记缓存 {playerID:HelpBattlePlayer, ...} +g_arenaPlayerBattleRecDict = {} # 本服竞技场玩家挑战记录缓存 {playerID:[ArenaBattleRec, ...], ...} +g_arenaPlayerMatchDict = {} # 本服竞技场玩家匹配记录缓存 {playerID:[ArenaMatchPlayer, ...], ...} + g_autoViceleaderDict = {}#自动安排副盟主的玩家记录{familyID:[]} g_forbidAutoViceleaderFamily = [] #禁止自动安排副盟主的仙盟[familyID,..] g_crossZoneName = "" # 跨服分区名 + +g_crossActInfoDict = None # 跨服运营活动信息 {actName:{actInfoDict}, ...} + +g_crossMailPlayerDict = {} # 有跨服邮件的玩家ID信息 {playerID:tick, ...} g_crossPlayerViewCache = {} # 查看跨服玩家信息 {playerID:[cacheInfo, updTick], ...} @@ -98,6 +105,8 @@ g_crossPKUnNotifyOverInfo = {} # 跨服PK未同步的结算信息 {player:[overInfo], ...} +g_unNotifyKillCrossBossDict = {} # 未通知成功的击杀跨服boss {playerID:[killInfo], ...},主要为了防刷(击杀马上下线导致通知不到,然后上线捡东西) + g_crossMapNPCInfo = {} # 跨服地图NPC信息 {mapID:[tick, npcInfo], ...} g_crossSetPlayerAttr = {} # 跨服玩家更新玩家数据 {playerID:[[setType, setDict], ...], ...} -- Gitblit v1.8.0