From 7cda738936cee0049a343ff13279a94fa7816c16 Mon Sep 17 00:00:00 2001 From: hxp <ale99527@vip.qq.com> Date: 星期一, 23 五月 2022 17:00:22 +0800 Subject: [PATCH] 9415 【BT】【后端】古神战场(同场次提前结算的玩家无法再进入;优化无法进入系统提示;增加开启X分钟后无法进入;优化复活坐标) --- ServerPython/CoreServerGroup/GameServer/Script/Player/PlayerFB.py | 5 ++--- 1 files changed, 2 insertions(+), 3 deletions(-) diff --git a/ServerPython/CoreServerGroup/GameServer/Script/Player/PlayerFB.py b/ServerPython/CoreServerGroup/GameServer/Script/Player/PlayerFB.py index 48853d9..927e896 100644 --- a/ServerPython/CoreServerGroup/GameServer/Script/Player/PlayerFB.py +++ b/ServerPython/CoreServerGroup/GameServer/Script/Player/PlayerFB.py @@ -168,10 +168,9 @@ pass elif mapID == ChConfig.Def_FBMapID_CrossBattlefield: - openTimeInfo = CrossBattlefield.GetCrossBattlefieldOpenTime(zoneID) + openTimeInfo = CrossBattlefield.GetCrossBattlefieldOpenTime(serverGroupID, zoneID, playerID) if not openTimeInfo: - PlayerControl.NotifyCodeCross(serverGroupID, playerID, "FBIsNotOpen") - GameWorld.ErrLog("非活动时间或未开启! funcLineID=%s,zoneID=%s" % (funcLineID, zoneID), playerID) + #GameWorld.ErrLog("非活动时间或未开启! funcLineID=%s,zoneID=%s" % (funcLineID, zoneID), playerID) return dynamicShuntType = DynamicShuntType_Equally isCallBattle, openHour, openMinute = openTimeInfo -- Gitblit v1.8.0