diff options
author | QAston <none@none> | 2009-04-18 11:52:47 +0200 |
---|---|---|
committer | QAston <none@none> | 2009-04-18 11:52:47 +0200 |
commit | 8e9d3a5964a65cc5ad878b0f39a3fd92600cebdf (patch) | |
tree | f955b69dd66a7aaa892fea501f6ac6d6c1048f7e /src | |
parent | 41db150de1ba14f202beea682206d2808343809f (diff) |
*Make Shadow Embrace reduce hots effect.
*Fix Glyph of Conflagrate.
--HG--
branch : trunk
Diffstat (limited to 'src')
-rw-r--r-- | src/game/SpellEffects.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/game/SpellEffects.cpp b/src/game/SpellEffects.cpp index ae468f0fdbb..d321d2d6e31 100644 --- a/src/game/SpellEffects.cpp +++ b/src/game/SpellEffects.cpp @@ -451,6 +451,9 @@ void Spell::SpellDamageSchoolDmg(uint32 effect_idx) // Conflagrate - consumes immolate if (m_spellInfo->TargetAuraState == AURA_STATE_IMMOLATE) { + // Glyph of Conflagrate + if (m_caster->HasAura(56235)) + break; // for caster applied auras only Unit::AuraEffectList const &mPeriodic = unitTarget->GetAurasByType(SPELL_AURA_PERIODIC_DAMAGE); for(Unit::AuraEffectList::const_iterator i = mPeriodic.begin(); i != mPeriodic.end(); ++i) |