diff options
author | ariel- <ariel-@users.noreply.github.com> | 2017-03-07 20:19:53 -0300 |
---|---|---|
committer | Shauren <shauren.trinity@gmail.com> | 2019-08-17 20:04:14 +0200 |
commit | 6b150b6e55c60ddc8e5da823c335a804d48e8efc (patch) | |
tree | fbec25d10166e7faba00ef4c3470739365d4b6ab | |
parent | 5f2790815a7eadd0e1781488a4d4442f1dc08228 (diff) |
Core/Auras: implement correct model for Bear Form (used by npcs)
Closes #7337
(cherrypicked from 8e865a60c8152ec6a95e169040903806738bda7f)
-rw-r--r-- | src/server/game/Spells/Auras/SpellAuraEffects.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/server/game/Spells/Auras/SpellAuraEffects.cpp b/src/server/game/Spells/Auras/SpellAuraEffects.cpp index 1859256b0a1..81ea02ba490 100644 --- a/src/server/game/Spells/Auras/SpellAuraEffects.cpp +++ b/src/server/game/Spells/Auras/SpellAuraEffects.cpp @@ -1687,6 +1687,10 @@ void AuraEffect::HandleAuraModShapeshift(AuraApplication const* aurApp, uint8 mo switch (GetId()) { + // Bear Form + case 7090: + modelid = 29414; + break; // Roc Form case 35200: modelid = 4877; |