Hey, 
	So recently I've been trying to make custom recipes for my server I'm currently working on.
 
	The issue I've run into is for some reason said "items" are coming up blank - I've attached the correct item ID but still it's not working correctly.
 
	Here is a SS of one of the recipes on the server - also below this will be the code for it.
 
class B_Bergen_mcamo_F: Exile_AbstractCraftingRecipe
{
   name = "Bergen Backpack Cammo";
   pictureItem = "B_Bergen_mcamo_F";
   requiredInteractionModelGroup = "WorkBench";
   requiresFire = 0;
   returnedItems[] =
   {
      {1, "B_Bergen_mcamo_F"}
   };
   components[] = 
   {
      {1, "B_Bergen_mcamo"},
      {1, "Exile_Uniform_Woodland"},
      {2, "Exile_Item_Rope"}
   };
   tools[] = {"Exile_Item_Foolbox","Exile_Item_Pliers","Exile_Item_Knife"};
   category = "Tools & Items";
};
	Thank you for your time,  
	Arb