diff options
Diffstat (limited to 'ihl/recipes/RecipeInputWire.java')
| -rw-r--r-- | ihl/recipes/RecipeInputWire.java | 6 |
1 files changed, 3 insertions, 3 deletions
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;
}
}
|
