diff options
Diffstat (limited to 'src/game/Spell.cpp')
-rw-r--r-- | src/game/Spell.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/game/Spell.cpp b/src/game/Spell.cpp index dd63041e63c..dbd0a74dc76 100644 --- a/src/game/Spell.cpp +++ b/src/game/Spell.cpp @@ -656,6 +656,9 @@ void Spell::prepareDataForTriggerSystem() case SPELLFAMILY_PALADIN: // For Holy Shock triggers need do it if (m_spellInfo->SpellFamilyFlags & 0x0001000000200000LL) m_canTrigger = true; break; + case SPELLFAMILY_ROGUE: // mutilate mainhand + offhand + if (m_spellInfo->SpellFamilyFlags & 0x600000000LL) m_canTrigger = true; + break; } } // Do not trigger from item cast spell |