From ca7ac74134c45d217e8141a8de496b112f94252c Mon Sep 17 00:00:00 2001 From: DiSlord Date: Wed, 21 Jan 2009 00:25:09 +0300 Subject: [PATCH] Allow trigger from 10 and ranks Mage spell (work some talents) Signed-off-by: DiSlord --- src/game/Spell.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/game/Spell.cpp b/src/game/Spell.cpp index b59412bfa..ab5e1fc80 100644 --- a/src/game/Spell.cpp +++ b/src/game/Spell.cpp @@ -687,8 +687,8 @@ void Spell::prepareDataForTriggerSystem() { switch (m_spellInfo->SpellFamilyName) { - case SPELLFAMILY_MAGE: // Arcane Missles triggers need do it - if (m_spellInfo->SpellFamilyFlags & 0x0000000000200000LL) m_canTrigger = true; + case SPELLFAMILY_MAGE: // Arcane Missles / Blizzard triggers need do it + if (m_spellInfo->SpellFamilyFlags & 0x0000000000200080LL) m_canTrigger = true; break; case SPELLFAMILY_WARLOCK: // For Hellfire Effect / Rain of Fire / Seed of Corruption triggers need do it if (m_spellInfo->SpellFamilyFlags & 0x0000800000000060LL) m_canTrigger = true;