From 97cbea04b641f367c24096e69dfe058baf80b150 Mon Sep 17 00:00:00 2001
From: xdh <xiefantasy@qq.com>
Date: 星期三, 05 十二月 2018 15:42:59 +0800
Subject: [PATCH] 5242 【后端】【1.3.100】仙盟宴会答题修改为只能在宴会地图内才能答题
---
ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Skill/GameBuffs/BuffProcess_1089.py | 9 ++-------
1 files changed, 2 insertions(+), 7 deletions(-)
diff --git a/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Skill/GameBuffs/BuffProcess_1089.py b/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Skill/GameBuffs/BuffProcess_1089.py
index 5013870..8f90924 100644
--- a/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Skill/GameBuffs/BuffProcess_1089.py
+++ b/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Skill/GameBuffs/BuffProcess_1089.py
@@ -2,7 +2,7 @@
# -*- coding: GBK -*-
##@package BuffProcess_1089
-# 按最大血量百分比减血
+# 按被攻击者的最大血量百分比减血
#
# @author Alee
# @date 2011-03-18 16:45
@@ -10,11 +10,6 @@
#
# 修改时间 修改人 修改内容
#
-# 模块详细说明 按最大血量百分比减血
-# @change: "2013-03-20 18:00" Alee 添加释放者相关的属性刷新逻辑,压入值计算
-# @change: "2013-10-31 14:45" Alee 武器的技能增强效果
-#---------------------------------------------------------------------
-"""Version = 2013-10-31 14:45"""
#导入
import SkillCommon
@@ -83,5 +78,5 @@
#技能附加
skillEnhance = curEffect.GetEffectValue(1)
- return [int(GameObj.GetMaxHP(attacker) * skillPer + skillEnhance)]
+ return [int(GameObj.GetMaxHP(defender) * skillPer + skillEnhance)]
--
Gitblit v1.8.0