From f281d5f121c8b5477e28d0647ba8c46164242b01 Mon Sep 17 00:00:00 2001 From: hondacrx Date: Sun, 1 Sep 2019 10:56:41 -0400 Subject: [PATCH] Core/Auras: Implement Roc form shapeshift Port From (https://github.com/TrinityCore/TrinityCore/commit/40a9055a5fe994dd0b79ebb099e29dbc1d517b0b) --- Source/Game/Spells/Auras/AuraEffect.cs | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/Source/Game/Spells/Auras/AuraEffect.cs b/Source/Game/Spells/Auras/AuraEffect.cs index 48c9b34f7..a854ad676 100644 --- a/Source/Game/Spells/Auras/AuraEffect.cs +++ b/Source/Game/Spells/Auras/AuraEffect.cs @@ -1293,7 +1293,18 @@ namespace Game.Spells Unit target = aurApp.GetTarget(); ShapeShiftForm form = (ShapeShiftForm)GetMiscValue(); - uint modelid = target.GetModelForForm(form); + uint modelid = 0; + + switch (GetId()) + { + // Roc Form + case 35200: + modelid = 4877; + break; + default: + modelid = target.GetModelForForm(form); + break; + } if (apply) {