diff options
author | Blaymoira <none@none> | 2009-01-19 21:25:14 +0100 |
---|---|---|
committer | Blaymoira <none@none> | 2009-01-19 21:25:14 +0100 |
commit | dd5055576fd25a18626013420ac735e08cdb00b4 (patch) | |
tree | e748473a454ec5a5d33bc2cf4de73752a9247c46 /src | |
parent | d465a5ed02532e55b97f8478b685e4ee72353f1b (diff) |
*Fixed dummy effect of spell 1464 and ranks
--HG--
branch : trunk
Diffstat (limited to 'src')
-rw-r--r-- | src/game/SpellEffects.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/game/SpellEffects.cpp b/src/game/SpellEffects.cpp index ce09f2f598e..a908db9185c 100644 --- a/src/game/SpellEffects.cpp +++ b/src/game/SpellEffects.cpp @@ -1307,6 +1307,12 @@ void Spell::EffectDummy(uint32 i) m_caster->CastCustomSpell(m_caster,34846,&chargeBasePoints0,NULL,NULL,true); return; } + //Slam + if(m_spellInfo->SpellFamilyFlags[0] & 0x200000 && m_spellInfo->SpellIconID == 559) + { + int32 bp0 = damage; + m_caster->CastCustomSpell(unitTarget, 50783, &bp0, NULL, NULL, true, 0); + } // Execute if(m_spellInfo->SpellFamilyFlags[0] & 0x20000000) { |