From d0f353b00a2a805b3327e9fd7f49d55dcc0ec39a Mon Sep 17 00:00:00 2001 From: hxp <ale99527@vip.qq.com> Date: 星期四, 11 七月 2019 13:44:55 +0800 Subject: [PATCH] 7954 【主干】【后端】跨服PVP匹配机器人规则优化(改为由跨服服务器决定是否匹配机器人) --- ServerPython/CoreServerGroup/GameServer/Script/PyGameData.py | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/ServerPython/CoreServerGroup/GameServer/Script/PyGameData.py b/ServerPython/CoreServerGroup/GameServer/Script/PyGameData.py index 1c3fbd9..3debd06 100644 --- a/ServerPython/CoreServerGroup/GameServer/Script/PyGameData.py +++ b/ServerPython/CoreServerGroup/GameServer/Script/PyGameData.py @@ -91,6 +91,7 @@ g_crossPKPlayerDict = {} # 跨服PK玩家字典 {playerID:PKPlayer, ...} g_crossPKZoneMatchPlayerDict = {} # 跨服PK匹配中的玩家字典 {zoneID:[playerID, ...], ...} +g_crossPKZoneMatchRobotPlayerDict = {} # 跨服PK匹配机器人的玩家字典 {playerID:PKPlayer, ...} g_crossPKRoomDict = {} # 跨服PK房间字典 {roomID:PKRoom, ...} g_crossPKRoomID = 0 # 跨服PK当前已经创建到的房间ID,自增创建 -- Gitblit v1.8.0