From ebda0a314a04a6eba9d002e7823858324e50bced Mon Sep 17 00:00:00 2001 From: hxp <ale99527@vip.qq.com> Date: 星期五, 26 九月 2025 12:06:18 +0800 Subject: [PATCH] 198 【内政】淘金系统-服务端(修复恢复淘金令超出上限bug;) --- ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Player/PlayerFuncTeam.py | 11 ----------- 1 files changed, 0 insertions(+), 11 deletions(-) diff --git a/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Player/PlayerFuncTeam.py b/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Player/PlayerFuncTeam.py index 5ef3994..2c811dc 100644 --- a/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Player/PlayerFuncTeam.py +++ b/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Player/PlayerFuncTeam.py @@ -49,16 +49,12 @@ if not ipyData.GetOPLimitInAct(): return isInAct = False - if funcMapID == ChConfig.Def_FBMapID_CrossBattlefield: - isInAct = CrossBattlefield.GetCrossBattlefieldState() if isInAct: GameWorld.ErrLog("活动期间无法操作队伍! funcMapID=%s" % funcMapID, curPlayer.GetPlayerID()) return isInAct def GetFuncTeamZoneID(funcMapID): zoneID = 0 - if funcMapID == ChConfig.Def_FBMapID_CrossBattlefield: - zoneID = CrossBattlefield.GetCrossBattlefieldZoneID(GameWorld.GetServerGroupID()) return zoneID #// B9 20 创建功能队伍 #tagCMCreateFuncTeam @@ -453,13 +449,6 @@ funcZoneID = 0 serverGroupList = [] - if funcMapID == ChConfig.Def_FBMapID_CrossBattlefield: - zoneIpyData = CrossBattlefield.GetCrossBattlefieldZoneIpyData(serverGroupID) - if not zoneIpyData: - return - funcZoneID = zoneIpyData.GetZoneID() - serverGroupList = zoneIpyData.GetServerGroupIDList() # 只通知该分区服务器 - return funcZoneID, serverGroupList def ClientServerMsg_CreateFuncTeam(serverGroupID, msgData): -- Gitblit v1.8.0