Core/Auras: Implement Roc form shapeshift

Closes #16164
This commit is contained in:
ariel-
2017-03-07 12:36:15 -03:00
parent 6ba0d489ad
commit c7a5aa3902

View File

@@ -1691,7 +1691,16 @@ void AuraEffect::HandleAuraModShapeshift(AuraApplication const* aurApp, uint8 mo
TC_LOG_ERROR("spells", "Auras: Unknown Shapeshift Type: %u", GetMiscValue());
}
modelid = target->GetModelForForm(form);
switch (GetId())
{
// Roc Form
case 35200:
modelid = 4877;
break;
default:
modelid = target->GetModelForForm(form);
break;
}
if (apply)
{