From 2636ccdd67b5f33421ab7f9152021bc4ebc147b3 Mon Sep 17 00:00:00 2001 From: Foghrye4 Date: Tue, 7 Feb 2017 20:16:24 +0300 Subject: Fixed an ore dictionary recipes of Iron workbench which using wrong set of items. Fixed wire recipe input. All recipes of Iron workbench now use fluid container input and will drop an empty container. --- ihl/recipes/RecipeInputWire.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'ihl/recipes/RecipeInputWire.java') diff --git a/ihl/recipes/RecipeInputWire.java b/ihl/recipes/RecipeInputWire.java index 720fe1b..0bf2855 100644 --- a/ihl/recipes/RecipeInputWire.java +++ b/ihl/recipes/RecipeInputWire.java @@ -14,12 +14,12 @@ public class RecipeInputWire implements IRecipeInput public final ItemStack input; public final int amount; - public RecipeInputWire(ItemStack aInput) + public RecipeInputWire(final ItemStack aInput) { this(aInput, IHLUtils.getWireLength(aInput)); } - public RecipeInputWire(ItemStack aInput, int aAmount) + public RecipeInputWire(final ItemStack aInput, int aAmount) { if (aInput.getItem() == null || !(aInput.getItem() instanceof IWire)) { @@ -27,7 +27,7 @@ public class RecipeInputWire implements IRecipeInput } else { - this.input = aInput.copy(); + this.input = aInput; this.amount = aAmount; } } -- cgit v1.2.3