From 2b34924e06c0c36d77d9ccec4c4f10f1ebd16e84 Mon Sep 17 00:00:00 2001
From: hxp <ale99527@vip.qq.com>
Date: 星期二, 16 九月 2025 19:03:17 +0800
Subject: [PATCH] 129 【战斗】战斗系统-服务端(NPC表加特长字段;)

---
 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