Merge branch 'master_develop' of http://60.1.1.230/gaoxin/JL_Client into master_develop

dev_chengFeng
ZhangBiao 2020-09-03 15:59:24 +08:00
commit 6e860dde51
1 changed files with 6 additions and 3 deletions

View File

@ -2234,9 +2234,12 @@ local effectList = {
[116] = function(caster, target, args, interval, skill)
LogError("主动加一个普攻")
local i1 = args[1]
BattleLogic.WaitForTrigger(0.5, function ()
caster:InsertSkill(BattleSkillType.Normal, false, false, nil)
end)
--如果身上有不灭效果就不会加普攻兼容金翅大鹏10星天赋 by王振兴
if not BattleLogic.BuffMgr:HasBuff(caster,BuffName.NoDead) then
BattleLogic.WaitForTrigger(0.5, function ()
caster:InsertSkill(BattleSkillType.Normal, false, false, nil)
end)
end
end,
}