mirror of
https://github.com/mangosfour/server.git
synced 2025-12-20 16:37:04 +00:00
[11392] implement spell 38358 which casts 38353
Original patch created by megamage, modified by stfx and Schmoozerd. Thanks! Signed-off-by: DasBlub <DasBlub@gmail.com>
This commit is contained in:
parent
e1f345c49f
commit
119d7d9f48
2 changed files with 9 additions and 1 deletions
|
|
@ -6355,6 +6355,14 @@ void Spell::EffectScriptEffect(SpellEffectIndex eff_idx)
|
||||||
|
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
case 38358: // Tidal Surge
|
||||||
|
{
|
||||||
|
if (!unitTarget)
|
||||||
|
return;
|
||||||
|
|
||||||
|
unitTarget->CastSpell(unitTarget, 38353, true, NULL, NULL, m_caster->GetObjectGuid());
|
||||||
|
return;
|
||||||
|
}
|
||||||
case 30918: // Improved Sprint
|
case 30918: // Improved Sprint
|
||||||
{
|
{
|
||||||
if (!unitTarget)
|
if (!unitTarget)
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
#ifndef __REVISION_NR_H__
|
#ifndef __REVISION_NR_H__
|
||||||
#define __REVISION_NR_H__
|
#define __REVISION_NR_H__
|
||||||
#define REVISION_NR "11391"
|
#define REVISION_NR "11392"
|
||||||
#endif // __REVISION_NR_H__
|
#endif // __REVISION_NR_H__
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue