Skip to content

Commit abc3439

Browse files
committed
[Buff] Add E_APPLY_AREA_AURA_PARTY parsing support to damage_buff_t
1 parent 104b714 commit abc3439

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

engine/buff/buff.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3863,7 +3863,8 @@ damage_buff_t* damage_buff_t::set_buff_mod( damage_buff_modifier_t& mod, const s
38633863
if( multiplier != 0.0 )
38643864
mod.multiplier = 1.0 + multiplier;
38653865

3866-
if ( !s->ok() || !s->effectN( effect_idx ).ok() || s->effectN( effect_idx ).type() != E_APPLY_AURA )
3866+
if ( !s->ok() || !s->effectN( effect_idx ).ok() || ( s->effectN( effect_idx ).type() != E_APPLY_AURA &&
3867+
s->effectN( effect_idx ).type() != E_APPLY_AREA_AURA_PARTY ) )
38673868
return this;
38683869

38693870
if ( multiplier == 0.0 )

0 commit comments

Comments
 (0)