mirror of
https://github.com/mangosfour/server.git
synced 2025-12-23 16:37:03 +00:00
[9443] Add dummy effect of spell 55818
Signed-off-by: NoFantasy <nofantasy@nf.no>
This commit is contained in:
parent
5b6c0566ae
commit
9f3b42d8ee
2 changed files with 11 additions and 1 deletions
|
|
@ -1449,6 +1449,16 @@ void Spell::EffectDummy(SpellEffectIndex eff_idx)
|
||||||
|
|
||||||
return;
|
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 58418: // Portal to Orgrimmar
|
||||||
case 58420: // Portal to Stormwind
|
case 58420: // Portal to Stormwind
|
||||||
return; // implemented in EffectScript[0]
|
return; // implemented in EffectScript[0]
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
#ifndef __REVISION_NR_H__
|
#ifndef __REVISION_NR_H__
|
||||||
#define __REVISION_NR_H__
|
#define __REVISION_NR_H__
|
||||||
#define REVISION_NR "9442"
|
#define REVISION_NR "9443"
|
||||||
#endif // __REVISION_NR_H__
|
#endif // __REVISION_NR_H__
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue