From e9b8bd5b9191fad0a21b9a5d1dff5e81a66628e9 Mon Sep 17 00:00:00 2001 From: LordOfTheMine Date: Mon, 1 Apr 2013 01:04:26 +0300 Subject: [PATCH] Fixed transmutation recipes involving metadata --- .../com/pahimar/ee3/recipe/RecipesTransmutationStone.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/ee3_common/com/pahimar/ee3/recipe/RecipesTransmutationStone.java b/ee3_common/com/pahimar/ee3/recipe/RecipesTransmutationStone.java index 865fff03..c274aea7 100644 --- a/ee3_common/com/pahimar/ee3/recipe/RecipesTransmutationStone.java +++ b/ee3_common/com/pahimar/ee3/recipe/RecipesTransmutationStone.java @@ -36,10 +36,10 @@ public class RecipesTransmutationStone { public static List transmutationStones = Arrays.asList(miniumStone, philStone); - private static ItemStack anyCoal = new ItemStack(Item.coal, 1, -1); - private static ItemStack anyWood = new ItemStack(Block.wood, 1, -1); - private static ItemStack anyPlank = new ItemStack(Block.planks, 1, -1); - private static ItemStack anySandStone = new ItemStack(Block.sandStone, 1, -1); + private static ItemStack anyCoal = new ItemStack(Item.coal, 1, OreDictionary.WILDCARD_VALUE); + private static ItemStack anyWood = new ItemStack(Block.wood, 1, OreDictionary.WILDCARD_VALUE); + private static ItemStack anyPlank = new ItemStack(Block.planks, 1, OreDictionary.WILDCARD_VALUE); + private static ItemStack anySandStone = new ItemStack(Block.sandStone, 1, OreDictionary.WILDCARD_VALUE); private static ItemStack dyeBoneMeal = new ItemStack(Item.dyePowder, 1, 15); public static void init() {