aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/game/Spell.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/game/Spell.cpp b/src/game/Spell.cpp
index 3291b504ff2..033eb934504 100644
--- a/src/game/Spell.cpp
+++ b/src/game/Spell.cpp
@@ -697,8 +697,8 @@ void Spell::prepareDataForTriggerSystem()
m_canTrigger = false; // Triggered spells can`t trigger another
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;