mirror of
https://github.com/PaperMC/Paper.git
synced 2025-01-22 08:15:05 +01:00
Correctly register Furnace Recipies. Fixes BUKKIT-5044
We should also use items, not blocks. :)
This commit is contained in:
parent
b880a2d24c
commit
8a29829d1a
1 changed files with 2 additions and 1 deletions
|
@ -18,9 +18,10 @@ public class CraftFurnaceRecipe extends FurnaceRecipe implements CraftRecipe {
|
|||
return new CraftFurnaceRecipe(recipe.getResult(), recipe.getInput());
|
||||
}
|
||||
|
||||
@Override
|
||||
public void addToCraftingManager() {
|
||||
ItemStack result = this.getResult();
|
||||
ItemStack input = this.getInput();
|
||||
RecipesFurnace.getInstance().registerRecipe(CraftMagicNumbers.getBlock(input.getTypeId()), CraftItemStack.asNMSCopy(result), 0.1f);
|
||||
RecipesFurnace.getInstance().a(CraftMagicNumbers.getItem(input.getTypeId()), CraftItemStack.asNMSCopy(result), 0.1f);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue