From 2aa7f646223eaa3c5130c8d7bf9bf7e721759e67 Mon Sep 17 00:00:00 2001 From: Brian Date: Mon, 14 Dec 2009 20:12:24 -0700 Subject: [PATCH] * Implement support for shapeshit form 26 used by spell 24347 * Patch by azuritus -- Thanks * Closes #542 --HG-- branch : trunk --- src/game/SpellAuras.cpp | 3 +++ src/game/Unit.h | 1 + 2 files changed, 4 insertions(+) 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,