Skip to content

Commit

Permalink
[12201] Fix spell 57397. Thanks to koksneo for spotting the error
Browse files Browse the repository at this point in the history
  • Loading branch information
Schmoozerd authored and Salja committed Sep 9, 2012
1 parent 26b2b40 commit d51c1ca
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion src/game/SpellEffects.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -7927,7 +7927,9 @@ void Spell::EffectScriptEffect(SpellEffectEntry const* effect)
if (!unitTarget)
return;

unitTarget->CastSpell(unitTarget, 57292, true);
unitTarget->CastSpell(unitTarget, 45548, true);
unitTarget->CastSpell(unitTarget, 57073, true);
unitTarget->CastSpell(unitTarget, 57398, true);
break;
}
case 58466: // Gigantic Feast
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 "12200"
#define REVISION_NR "12201"
#endif // __REVISION_NR_H__

0 comments on commit d51c1ca

Please sign in to comment.