From 7333df76f1172b83238623969ae0b6f978801201 Mon Sep 17 00:00:00 2001 From: hxp <ale99527@vip.qq.com> Date: 星期二, 14 一月 2025 20:07:04 +0800 Subject: [PATCH] 10263 【越南】【英文】【BT】后端支持NPC仿真实玩家战斗和快速战斗(改为真实地图战斗;竞技场、跨服PK、跨服排位赛,测试地图100均已支持;) --- ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/GameWorldLogic/FBLogic.py | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/GameWorldLogic/FBLogic.py b/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/GameWorldLogic/FBLogic.py index 42aa566..ad6f5fc 100644 --- a/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/GameWorldLogic/FBLogic.py +++ b/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/GameWorldLogic/FBLogic.py @@ -2499,7 +2499,7 @@ return callFunc(curPlayer, mapID, funcLineID, tagType, tagID, valueList, fightRet, awardItemList, ret) -def OnMirrorBattleRequest(curPlayer, mapID, funcLineID): +def OnMirrorBattleRequest(curPlayer, mapID, funcLineID, factionPlayerList): ## 镜像战斗请求 do_FBLogic_ID = __GetFBLogic_MapID(mapID) @@ -2509,7 +2509,7 @@ # 默认允许 return True - return callFunc(curPlayer, mapID, funcLineID) + return callFunc(curPlayer, mapID, funcLineID, factionPlayerList) def OnMirrorBattleOver(battleID, mapID): ## 镜像战斗结束 -- Gitblit v1.8.0