From 81c77baff51bac57b516acb192e36842c8d27646 Mon Sep 17 00:00:00 2001 From: hch <305670599@qq.com> Date: 星期四, 13 十二月 2018 15:27:18 +0800 Subject: [PATCH] 2620 【BUG】【1.3】【1.3.100】生命增长,神兵护盾值表现出现错 --- ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Player/PlayerControl.py | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Player/PlayerControl.py b/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Player/PlayerControl.py index 638fcb1..94d7f83 100644 --- a/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Player/PlayerControl.py +++ b/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Player/PlayerControl.py @@ -4913,7 +4913,7 @@ } for i in xrange(1, ChConfig.Def_Calc_AllAttrType_MAX): - if i in [ChConfig.TYPE_Calc_AttrHP, ChConfig.TYPE_Calc_AttrMP]: + if i in [ChConfig.TYPE_Calc_AttrHP, ChConfig.TYPE_Calc_AttrMP, ChConfig.TYPE_Calc_ProDef]: continue value = 0 if i not in initAttrDict else initAttrDict[i] EffGetSet.SetValueByEffIndex(curPlayer, i, value) -- Gitblit v1.8.0