Package net.minecraft.item.crafting
Class FurnaceRecipes
- java.lang.Object
-
- net.minecraft.item.crafting.FurnaceRecipes
-
public class FurnaceRecipes extends java.lang.Object
+ This portion of EaglercraftX contains deobfuscated Minecraft 1.8 source code. Minecraft 1.8.8 bytecode is (c) 2015 Mojang AB. "Do not distribute!" Mod Coder Pack v9.18 deobfuscation configs are (c) Copyright by the MCP Team EaglercraftX 1.8 patch files are (c) 2022-2023 LAX1DUDE. All Rights Reserved. WITH THE EXCEPTION OF PATCH FILES, MINIFIED JAVASCRIPT, AND ALL FILES NORMALLY FOUND IN AN UNMODIFIED MINECRAFT RESOURCE PACK, YOU ARE NOT ALLOWED TO SHARE, DISTRIBUTE, OR REPURPOSE ANY FILE USED BY OR PRODUCED BY THE SOFTWARE IN THIS REPOSITORY WITHOUT PRIOR PERMISSION FROM THE PROJECT AUTHOR. NOT FOR COMMERCIAL OR MALICIOUS USE (please read the 'LICENSE' file this repo's root directory for more info)
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description void
addSmelting(Item input, ItemStack stack, float experience)
+ Adds a smelting recipe using an Item as the input item.void
addSmeltingRecipe(ItemStack input, ItemStack stack, float experience)
+ Adds a smelting recipe using an ItemStack as the input for the recipe.void
addSmeltingRecipeForBlock(Block input, ItemStack stack, float experience)
+ Adds a smelting recipe, where the input item is an instance of Block.float
getSmeltingExperience(ItemStack stack)
java.util.Map<ItemStack,ItemStack>
getSmeltingList()
ItemStack
getSmeltingResult(ItemStack stack)
+ Returns the smelting result of an item.static FurnaceRecipes
instance()
+ Returns an instance of FurnaceRecipes.
-
-
-
Method Detail
-
instance
public static FurnaceRecipes instance()
+ Returns an instance of FurnaceRecipes.
-
addSmeltingRecipeForBlock
public void addSmeltingRecipeForBlock(Block input, ItemStack stack, float experience)
+ Adds a smelting recipe, where the input item is an instance of Block.
-
addSmelting
public void addSmelting(Item input, ItemStack stack, float experience)
+ Adds a smelting recipe using an Item as the input item.
-
addSmeltingRecipe
public void addSmeltingRecipe(ItemStack input, ItemStack stack, float experience)
+ Adds a smelting recipe using an ItemStack as the input for the recipe.
-
getSmeltingResult
public ItemStack getSmeltingResult(ItemStack stack)
+ Returns the smelting result of an item.
-
getSmeltingExperience
public float getSmeltingExperience(ItemStack stack)
-
-