From 2838ace78267ff0f7681f424fa939449061ae781 Mon Sep 17 00:00:00 2001
From: hxp <ale99527@vip.qq.com>
Date: 星期二, 23 九月 2025 10:55:08 +0800
Subject: [PATCH] 129 【战斗】战斗系统-服务端(庞统技能;增加触发方式被连击18,被追击19;增加buff状态限制管理支持,写死硬控中无法格挡、闪避、行动;)

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