Hello everyone, I am trying to create a Recipe type for my mod, the only problem I have is that I do not think very well, I get that it is an error.
Here I will leave the Recipe Serializer code that I try to create:
package cl.c_master.furnicraft.init;
import cl.c_master.furnicraft.crafting.MasonFurnaceRecipe;
import net.minecraft.item.crafting.IRecipeSerializer;
public class ModRecipe
{
public static IRecipeSerializer<MasonFurnaceRecipe> MASON_FURNACE = IRecipeSerializer.register("mason", CookingRecipeSerializer<>(MasonFurnaceRecipe::new, 200));
}
Nothing more to say:
C_Master.