diff options
-rw-r--r-- | src/server/game/Spells/Auras/SpellAuraEffects.cpp | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/src/server/game/Spells/Auras/SpellAuraEffects.cpp b/src/server/game/Spells/Auras/SpellAuraEffects.cpp index 65541ec7fd2..1859256b0a1 100644 --- a/src/server/game/Spells/Auras/SpellAuraEffects.cpp +++ b/src/server/game/Spells/Auras/SpellAuraEffects.cpp @@ -1683,7 +1683,18 @@ void AuraEffect::HandleAuraModShapeshift(AuraApplication const* aurApp, uint8 mo Unit* target = aurApp->GetTarget(); ShapeshiftForm form = ShapeshiftForm(GetMiscValue()); - uint32 modelid = target->GetModelForForm(form); + uint32 modelid = 0; + + switch (GetId()) + { + // Roc Form + case 35200: + modelid = 4877; + break; + default: + modelid = target->GetModelForForm(form); + break; + } if (apply) { |