Commit cfeb432d16745f2a00b646cdbd66a13dabd8597c

Authored by zhouhaihai
1 parent c763e563

冒险被动技 调整

Showing 1 changed file with 3 additions and 3 deletions   Show diff stats
src/adv/AdvPassive.lua
... ... @@ -321,15 +321,15 @@ end
321 321  
322 322 function Passive:afterRound()
323 323 if self.isDel or self.owner.isDead or self.owner.lock then return end
324   - if self._afterRound then
325   - self:_afterRound() --有的触发自己检测在这里检查
326   - end
327 324 if self.round > 0 then --回合触发的
328 325 self.round = self.round - 1
329 326 end
330 327 if self.delay > 0 then
331 328 self.delay = self.delay - 1
332 329 end
  330 + if self._afterRound then
  331 + self:_afterRound() --有的触发自己检测在这里检查
  332 + end
333 333 end
334 334  
335 335 -- 可以触发
... ...