From 74ec7456aa69f4936fcf27d07b58c4feb1ddef3a Mon Sep 17 00:00:00 2001 From: NoFantasy Date: Wed, 24 Feb 2010 01:48:16 +0100 Subject: [PATCH] [9443] Add dummy effect of spell 55818 Signed-off-by: NoFantasy --- src/game/SpellEffects.cpp | 10 ++++++++++ src/shared/revision_nr.h | 2 +- 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/src/game/SpellEffects.cpp b/src/game/SpellEffects.cpp index 0fc68466470..46c5d75a321 100644 --- a/src/game/SpellEffects.cpp +++ b/src/game/SpellEffects.cpp @@ -1449,6 +1449,16 @@ void Spell::EffectDummy(SpellEffectIndex eff_idx) return; } + case 55818: // Hurl Boulder + { + // unclear how many summon min/max random, best guess below + uint32 random = urand(3,5); + + for(uint32 i = 0; i < random; ++i) + m_caster->CastSpell(m_caster, 55528, true); + + return; + } case 58418: // Portal to Orgrimmar case 58420: // Portal to Stormwind return; // implemented in EffectScript[0] diff --git a/src/shared/revision_nr.h b/src/shared/revision_nr.h index 7b14e019a29..0a4a605346b 100644 --- a/src/shared/revision_nr.h +++ b/src/shared/revision_nr.h @@ -1,4 +1,4 @@ #ifndef __REVISION_NR_H__ #define __REVISION_NR_H__ - #define REVISION_NR "9442" + #define REVISION_NR "9443" #endif // __REVISION_NR_H__