Skip to content

Commit

Permalink
[11392] implement spell 38358 which casts 38353
Browse files Browse the repository at this point in the history
Original patch created by megamage, modified by stfx and Schmoozerd. Thanks!

Signed-off-by: DasBlub <[email protected]>
  • Loading branch information
megamage authored and DasBlub committed Apr 24, 2011
1 parent 4106ec3 commit f373dd6
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
8 changes: 8 additions & 0 deletions src/game/SpellEffects.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -6355,6 +6355,14 @@ void Spell::EffectScriptEffect(SpellEffectIndex eff_idx)

break;
}
case 38358: // Tidal Surge
{
if (!unitTarget)
return;

unitTarget->CastSpell(unitTarget, 38353, true, NULL, NULL, m_caster->GetObjectGuid());
return;
}
case 30918: // Improved Sprint
{
if (!unitTarget)
Expand Down
2 changes: 1 addition & 1 deletion src/shared/revision_nr.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#ifndef __REVISION_NR_H__
#define __REVISION_NR_H__
#define REVISION_NR "11391"
#define REVISION_NR "11392"
#endif // __REVISION_NR_H__

0 comments on commit f373dd6

Please sign in to comment.