diff options
author | ariel- <ariel-@users.noreply.github.com> | 2017-03-07 20:19:53 -0300 |
---|---|---|
committer | ariel- <ariel-@users.noreply.github.com> | 2017-03-07 20:20:19 -0300 |
commit | 8e865a60c8152ec6a95e169040903806738bda7f (patch) | |
tree | c9c5d38197b94c511f084506e998624bfb23c722 /src | |
parent | c3a2bd32cf675d00081ffd447c93d31d48456ca2 (diff) |
Core/Auras: implement correct model for Bear Form (used by npcs)
Closes #7337
Diffstat (limited to 'src')
-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 94e621c038a..8bfc571d800 100644 --- a/src/server/game/Spells/Auras/SpellAuraEffects.cpp +++ b/src/server/game/Spells/Auras/SpellAuraEffects.cpp @@ -1693,6 +1693,10 @@ void AuraEffect::HandleAuraModShapeshift(AuraApplication const* aurApp, uint8 mo switch (GetId()) { + // Bear Form + case 7090: + modelid = 29414; + break; // Roc Form case 35200: modelid = 4877; |