From cdfb402122ef87427e72f705c0528825c57ea755 Mon Sep 17 00:00:00 2001 From: maximius Date: Tue, 22 Sep 2009 18:13:59 -0700 Subject: *Hacky fix to Grounding Totem by Themris (better than no fix at all, and very difficult to fix properly) --HG-- branch : trunk --- src/game/Spell.cpp | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'src/game/Spell.cpp') diff --git a/src/game/Spell.cpp b/src/game/Spell.cpp index e3aa3e995f1..3e533ebbd25 100644 --- a/src/game/Spell.cpp +++ b/src/game/Spell.cpp @@ -6079,6 +6079,10 @@ bool Spell::CheckTargetCreatureType(Unit* target) const if(m_spellInfo->Id == 2641 || m_spellInfo->Id == 23356) spellCreatureTargetMask = 0; + // Polymorph and Grounding Totem + if (target->GetEntry() == 5925 && m_spellInfo->SpellFamilyName == SPELLFAMILY_MAGE && (m_spellInfo->SpellFamilyFlags[0] & 0x1000000) && m_spellInfo->EffectApplyAuraName[0] == SPELL_AURA_MOD_CONFUSE) + return true; + if (spellCreatureTargetMask) { uint32 TargetCreatureType = target->GetCreatureTypeMask(); @@ -6200,6 +6204,8 @@ bool Spell::CheckTarget(Unit* target, uint32 eff) caster = m_caster->GetMap()->GetGameObject(m_originalCasterGUID); if (!caster) caster = m_caster; + if(target->GetEntry() == 5925) + return true; if(target != m_caster && !target->IsWithinLOSInMap(caster)) return false; break; -- cgit v1.2.3