From e67b6768b97dd18a398334f210c3056fc233e146 Mon Sep 17 00:00:00 2001 From: hxp <ale99527@vip.qq.com> Date: 星期五, 08 八月 2025 17:24:37 +0800 Subject: [PATCH] 129 【战斗】战斗系统-服务端(修复武将皮肤同步错误问题;) --- ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/GameWorldLogic/FBProcess/GameLogic_ClearDevil.py | 6 ++---- 1 files changed, 2 insertions(+), 4 deletions(-) diff --git a/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/GameWorldLogic/FBProcess/GameLogic_ClearDevil.py b/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/GameWorldLogic/FBProcess/GameLogic_ClearDevil.py index 0e46602..b9cf035 100644 --- a/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/GameWorldLogic/FBProcess/GameLogic_ClearDevil.py +++ b/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/GameWorldLogic/FBProcess/GameLogic_ClearDevil.py @@ -20,13 +20,11 @@ import IpyGameDataPY import IPY_GameWorld import GameWorldProcess -import EventShell import NPCCustomRefresh import ChConfig import ShareDefine import EventReport import PlayerControl -import QuestCommon #---副本配置对应key值--- @@ -394,7 +392,7 @@ # 任务 fbMissionID = gameFB.GetGameFBDictByKey(FBPlayerDict_MissionID) if fbMissionID: - EventShell.EventRespons_FBEvent(curPlayer, "cleardevil_pass_%s" % fbMissionID) + pass @@ -407,7 +405,7 @@ def OnLeaveFamily(curPlayer, tick): gameFB = GameWorld.GetGameFB() fbMissionType = gameFB.GetGameFBDictByKey(FBPlayerDict_MissionType) - if fbMissionType == QuestCommon.Def_Mission_Type_RunFamily: + if fbMissionType == 12: gameFB.SetGameFBDict(FBPlayerDict_MissionType, 0) return -- Gitblit v1.8.0