diff --git a/src/game/SpellEffects.cpp b/src/game/SpellEffects.cpp index e61ba6462..dff8f47af 100644 --- a/src/game/SpellEffects.cpp +++ b/src/game/SpellEffects.cpp @@ -475,7 +475,8 @@ void Spell::EffectSchoolDMG(uint32 effect_idx) // found Immolate or Shadowflame if (aura) { - int32 damagetick = aura->GetModifier()->m_amount; + // DoT not have applied spell bonuses in m_amount + int32 damagetick = m_caster->SpellDamageBonus(unitTarget, aura->GetSpellProto(), aura->GetModifier()->m_amount, DOT); damage += damagetick * 4; // Glyph of Conflagrate diff --git a/src/shared/revision_nr.h b/src/shared/revision_nr.h index d5a4c8ce7..5194dfe3c 100644 --- a/src/shared/revision_nr.h +++ b/src/shared/revision_nr.h @@ -1,4 +1,4 @@ #ifndef __REVISION_NR_H__ #define __REVISION_NR_H__ - #define REVISION_NR "9026" + #define REVISION_NR "9027" #endif // __REVISION_NR_H__