Skip to content

Commit

Permalink
[6945] Implement FORM_METAMORPHOSIS Shapeshift
Browse files Browse the repository at this point in the history
Signed-off-by: DiSlord <dislord@nomail.com>
  • Loading branch information
DiSlord committed Dec 25, 2008
1 parent 15bef9d commit 1740979
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
7 changes: 7 additions & 0 deletions src/game/SpellAuras.cpp
Expand Up @@ -2542,6 +2542,9 @@ void Aura::HandleAuraModShapeshift(bool apply, bool Real)
else
modelid = 21244;
break;
case FORM_METAMORPHOSIS:
modelid = 25277;
break;
case FORM_AMBIENT:
case FORM_SHADOW:
case FORM_STEALTH:
Expand Down Expand Up @@ -5305,6 +5308,10 @@ void Aura::HandleShapeshiftBoosts(bool apply)
spellId = 40122;
spellId2 = 40121;
break;
case FORM_METAMORPHOSIS:
spellId = 54817;
spellId2 = 54879;
break;
case FORM_SPIRITOFREDEMPTION:
spellId = 27792;
spellId2 = 27795; // must be second, this important at aura remove to prevent to early iterator invalidation.
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 "6944"
#define REVISION_NR "6945"
#endif // __REVISION_NR_H__

0 comments on commit 1740979

Please sign in to comment.