I'm trying to add a recipe with the item "Iron Ingot". I can't seem to find the correct term for this even after some research on Google.
package com.thebelgianmodder.www.common;
import net.minecraft.block.Block;
import net.minecraft.item.Item;
import net.minecraft.item.ItemStack;
import com.thebelgianmodder.www.common.block.BlockHandler;
import com.thebelgianmodder.www.common.item.ItemHandler;
import cpw.mods.fml.common.registry.GameRegistry;
public class RecipeHandler {
public static void registerRecipe() {
GameRegistry.addRecipe(new ItemStack(BlockHandler.NocturnalBlock), "xxx", "xxx", "xxx",
'x', ItemHandler.NocturnalIngot);
GameRegistry.addRecipe(new ItemStack(ItemHandler.NocturnalPickaxe), "xxx", " y ", " y ",
'x', ItemHandler.NocturnalIngot, 'y', Item.ingotIron);
}
}