diff options
| author | megamage <none@none> | 2008-12-08 09:56:32 -0600 |
|---|---|---|
| committer | megamage <none@none> | 2008-12-08 09:56:32 -0600 |
| commit | 6d93941685a8239c8d298bbcf07ae3ba0cef4a69 (patch) | |
| tree | fa665efe2e97f094a4a90faf9546494deca4c424 /src | |
| parent | 893bf8a410904d46493267e8885b4bc6723f9ac8 (diff) | |
*Fix Improved Blizzard. By Larva.
--HG--
branch : trunk
Diffstat (limited to 'src')
| -rw-r--r-- | src/game/Spell.cpp | 4 |
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; |
