I have no idea how to make it work, I tried playing with the codes for a couples of hours now. Here is my codes:
package com.SupremeMarshal.MoreToolsTierMod.util.handlers;
import com.SupremeMarshal.MoreToolsTierMod.init.ModBlocks;
import com.SupremeMarshal.MoreToolsTierMod.init.ModItems;
import net.minecraft.item.ItemStack;
import net.minecraftforge.fml.common.registry.GameRegistry;
public class RecipeHandler
{
public static void registerSmelting()
{
GameRegistry.addSmelting(new ItemStack(ModBlocks.RUNE_ORECOAL_BLOCK ,1 ,0), new ItemStack(ModItems.RUNE_INGOT, 1), 1.0f);
}
}
Or is it possible to create a Smelting recipe with JSON file? I hope I get some help!
Also, do I need to do a Register thing for this class?
(I'm still new in coding Java)