aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorBrian <runningnak3d@gmail.com>2009-12-14 20:12:24 -0700
committerBrian <runningnak3d@gmail.com>2009-12-14 20:12:24 -0700
commit2aa7f646223eaa3c5130c8d7bf9bf7e721759e67 (patch)
treec473a48b8f2ffbc828069e937edb1c1f903be195 /src
parentf643c9c21de070fada8e9becfc70959cee0a6012 (diff)
* Implement support for shapeshit form 26 used by spell 24347
* Patch by azuritus -- Thanks * Closes #542 --HG-- branch : trunk
Diffstat (limited to 'src')
-rw-r--r--src/game/SpellAuras.cpp3
-rw-r--r--src/game/Unit.h1
2 files changed, 4 insertions, 0 deletions
diff --git a/src/game/SpellAuras.cpp b/src/game/SpellAuras.cpp
index 80f0e82821e..f4df205e7e2 100644
--- a/src/game/SpellAuras.cpp
+++ b/src/game/SpellAuras.cpp
@@ -3474,6 +3474,9 @@ void AuraEffect::HandleAuraModShapeshift(bool apply, bool Real, bool changeAmoun
else
modelid = 21244;
break;
+ case FORM_MASTER_ANGLER:
+ modelid = 15234;
+ break;
case FORM_METAMORPHOSIS:
modelid = 25277;
break;
diff --git a/src/game/Unit.h b/src/game/Unit.h
index 91ec54d1d6a..b54fd00f1de 100644
--- a/src/game/Unit.h
+++ b/src/game/Unit.h
@@ -206,6 +206,7 @@ enum ShapeshiftForm
FORM_ZOMBIE = 0x15,
FORM_METAMORPHOSIS = 0x16,
FORM_UNDEAD = 0x19,
+ FORM_MASTER_ANGLER = 0x1A,
FORM_FLIGHT_EPIC = 0x1B,
FORM_SHADOW = 0x1C,
FORM_FLIGHT = 0x1D,