From 0b9b8df6390890cb8a8d00235be5651c40a9c47d Mon Sep 17 00:00:00 2001 From: hxp <ale99527@vip.qq.com> Date: 星期一, 06 三月 2023 14:22:10 +0800 Subject: [PATCH] 1111 【bt7】【bt8】【bt9】【主干】【后端】装备评分计算总战力超过20亿支持;master --- ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/GM/Commands/PrintFightPower.py | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/GM/Commands/PrintFightPower.py b/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/GM/Commands/PrintFightPower.py index 2b220f3..aae630b 100644 --- a/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/GM/Commands/PrintFightPower.py +++ b/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/GM/Commands/PrintFightPower.py @@ -53,7 +53,7 @@ for mfpType in ChConfig.MFPTypeAttrFuncIndexDict.keys(): fightPower = PlayerControl.GetMFPFightPower(curPlayer, mfpType) mfpSkillFP = curPlayer.GetDictByKey(ChConfig.Def_PlayerKey_MFPSkill % mfpType) - mfpEx = curPlayer.GetDictByKey(ChConfig.Def_PlayerKey_MFPEx % mfpType) + mfpEx = PlayerControl.GetMFPExFightPower(curPlayer, mfpType) name = mfpTypeName.get(mfpType, "模块%s" % mfpType) if mfpSkillFP or mfpEx: GameWorld.DebugAnswer(curPlayer, "%s战力(%s): %s,技能:%s, Ex=%s" % (name, mfpType, fightPower, mfpSkillFP, mfpEx)) -- Gitblit v1.8.0