Core/Auras: Implement Roc form shapeshift

Port From (https://github.com/TrinityCore/TrinityCore/commit/40a9055a5fe994dd0b79ebb099e29dbc1d517b0b)
This commit is contained in:
hondacrx
2019-09-01 10:56:41 -04:00
parent 95a80cf51e
commit f281d5f121
+12 -1
View File
@@ -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)
{