diff --git a/src/game/Unit.cpp b/src/game/Unit.cpp index 7f573f822..b13fd3a7c 100644 --- a/src/game/Unit.cpp +++ b/src/game/Unit.cpp @@ -9036,6 +9036,18 @@ uint32 Unit::SpellDamageBonus(Unit *pVictim, SpellEntry const *spellProto, uint3 } break; } + case SPELLFAMILY_PRIEST: + { + // Glyph of Smite + if (spellProto->SpellFamilyFlags & UI64LIT(0x00000080)) + { + // Holy Fire + if (pVictim->GetAura(SPELL_AURA_PERIODIC_DAMAGE, SPELLFAMILY_PRIEST, UI64LIT(0x00100000), NULL)) + if (Aura *aur = GetAura(55692, EFFECT_INDEX_0)) + DoneTotalMod *= (aur->GetModifier()->m_amount+100.0f) / 100.0f; + } + break; + } case SPELLFAMILY_DEATHKNIGHT: { // Icy Touch, Howling Blast and Frost Strike diff --git a/src/shared/revision_nr.h b/src/shared/revision_nr.h index a8f730b40..8c43ab514 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 "9569" + #define REVISION_NR "9570" #endif // __REVISION_NR_H__