From b226b5bb4956829f1adeb3c4c0f87b1383e1fe36 Mon Sep 17 00:00:00 2001 From: AlgorithmX2 Date: Mon, 17 Mar 2014 22:58:20 -0500 Subject: [PATCH] Fixed #0198 - Can't Macerate Wheat into Flour. --- recipes/Ingredient.java | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/recipes/Ingredient.java b/recipes/Ingredient.java index df76c2358..860a2571b 100644 --- a/recipes/Ingredient.java +++ b/recipes/Ingredient.java @@ -119,7 +119,11 @@ public class Ingredient implements IIngredient blk = GameRegistry.findBlock( nameSpace, "tile." + itemName ); if ( blk != null ) - return new ItemStack( blk, qty, meta ); + { + Item it = Item.getItemFromBlock( blk ); + if ( it != null ) + return new ItemStack( it, qty, meta ); + } Item it = GameRegistry.findItem( nameSpace, itemName ); if ( it == null )