From 4ad6cadee50d0267dec17876e4b8bce9bebe0bb6 Mon Sep 17 00:00:00 2001 From: hxp <ale99527@vip.qq.com> Date: 星期三, 28 四月 2021 18:48:24 +0800 Subject: [PATCH] 8912 【主干】【BT2】【后端】跨服PVP逻辑优化(1.X局内无法再次匹配同一玩家 2.优化超时匹配逻辑 3.优化匹配段位差 4.增加连输X局必连续匹配Y局机器人); --- ServerPython/CoreServerGroup/GameServer/Script/IpyGameDataPY.py | 3 --- 1 files changed, 0 insertions(+), 3 deletions(-) diff --git a/ServerPython/CoreServerGroup/GameServer/Script/IpyGameDataPY.py b/ServerPython/CoreServerGroup/GameServer/Script/IpyGameDataPY.py index 6c250f8..f2df7f2 100644 --- a/ServerPython/CoreServerGroup/GameServer/Script/IpyGameDataPY.py +++ b/ServerPython/CoreServerGroup/GameServer/Script/IpyGameDataPY.py @@ -582,7 +582,6 @@ "CrossRealmPKDan":( ("BYTE", "DanLV", 1), ("WORD", "LVUpScore", 0), - ("list", "MatchRange", 0), ("BYTE", "MatchRobotRate", 0), ("BYTE", "MatchRobotRateEx", 0), ), @@ -1874,14 +1873,12 @@ def __init__(self): self.DanLV = 0 self.LVUpScore = 0 - self.MatchRange = [] self.MatchRobotRate = 0 self.MatchRobotRateEx = 0 return def GetDanLV(self): return self.DanLV # 段位等级 def GetLVUpScore(self): return self.LVUpScore # 升段位所需积分 - def GetMatchRange(self): return self.MatchRange # 可匹配到的玩家段位区间 [从段位A, 到段位B],配[]代表只匹配本段位的 def GetMatchRobotRate(self): return self.MatchRobotRate # 匹配机器人基础概率,百分率 def GetMatchRobotRateEx(self): return self.MatchRobotRateEx # 匹配机器人失败次数附加概率,百分率 -- Gitblit v1.8.0