Skip to content

Commit

Permalink
[9443] Add dummy effect of spell 55818
Browse files Browse the repository at this point in the history
Signed-off-by: NoFantasy <nofantasy@nf.no>
  • Loading branch information
NoFantasy committed Feb 24, 2010
1 parent 3f98042 commit 74ec745
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
10 changes: 10 additions & 0 deletions src/game/SpellEffects.cpp
Expand Up @@ -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]
Expand Down
2 changes: 1 addition & 1 deletion 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__

0 comments on commit 74ec745

Please sign in to comment.