From 4e2e843061cd07f6c3f6312e066498491d64b437 Mon Sep 17 00:00:00 2001 From: hxp <ale99527@vip.qq.com> Date: 星期一, 11 八月 2025 11:18:14 +0800 Subject: [PATCH] 121 【武将】武将系统-服务端(攻防生命继承改为万分比) --- ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Player/PlayerOnline.py | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Player/PlayerOnline.py b/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Player/PlayerOnline.py index cbe7cb0..9552131 100644 --- a/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Player/PlayerOnline.py +++ b/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Player/PlayerOnline.py @@ -661,8 +661,8 @@ inheritPer = 1 # 继承比例,默认100% if attrID in ChConfig.AttrInheritPerDict: attrInheritPerID = ChConfig.AttrInheritPerDict[attrID] # 继承ID - inheritPer = selfAttrDict.get(attrInheritPerID, 100) # 继承比例从武将自身属性中取 - inheritPer /= 100.0 + inheritPer = selfAttrDict.get(attrInheritPerID, 10000) # 继承比例从武将自身属性中取 + inheritPer /= 10000.0 lineupHaloValue, lineupHaloPer = lineupHaloAttrInfo.get(attrID, 0), 0 fetterValue, fetterPer = fetterAttrDict.get(attrID, 0), 0 -- Gitblit v1.8.0