Reporting a possible issue with generating a hook for UPrimalInventoryComponent.RemoveArkTributeItem
Namely when generating aforementioned hook , the outputted function is
bool Hook_UPrimalInventoryComponent_RemoveArkTributeItem(UPrimalInventoryComponent* _this, FItemNetID* itemID, unsigned int Quantity)
{
return UPrimalInventoryComponent_RemoveArkTributeItem_original(_this, itemID, int);
}
And Visual Studio reports E0254 ( type name is not allowed ) , changing to
return UPrimalInventoryComponent_RemoveArkTributeItem_original(_this, itemID, Quantity);
Fixes the issue; Please close the ticket if this is normal behavior and the issue is on my end, Thanks !