summaryrefslogtreecommitdiffstats
path: root/src/main/java/net/minecraft/server/ShapedRecipes.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/net/minecraft/server/ShapedRecipes.java')
-rw-r--r--src/main/java/net/minecraft/server/ShapedRecipes.java20
1 files changed, 19 insertions, 1 deletions
diff --git a/src/main/java/net/minecraft/server/ShapedRecipes.java b/src/main/java/net/minecraft/server/ShapedRecipes.java
index e3126b6b..52f8ee74 100644
--- a/src/main/java/net/minecraft/server/ShapedRecipes.java
+++ b/src/main/java/net/minecraft/server/ShapedRecipes.java
@@ -12,6 +12,7 @@ public class ShapedRecipes implements IRecipe {
private ItemStack[] items;
private ItemStack result;
public final int a;
+ private boolean f = false;
public ShapedRecipes(int i, int j, ItemStack[] aitemstack, ItemStack itemstack) {
this.a = itemstack.id;
@@ -134,10 +135,27 @@ public class ShapedRecipes implements IRecipe {
}
public ItemStack a(InventoryCrafting inventorycrafting) {
- return this.b().cloneItemStack();
+ ItemStack itemstack = this.b().cloneItemStack();
+
+ if (this.f) {
+ for (int i = 0; i < inventorycrafting.getSize(); ++i) {
+ ItemStack itemstack1 = inventorycrafting.getItem(i);
+
+ if (itemstack1 != null && itemstack1.hasTag()) {
+ itemstack.setTag((NBTTagCompound) itemstack1.tag.clone());
+ }
+ }
+ }
+
+ return itemstack;
}
public int a() {
return this.width * this.height;
}
+
+ public ShapedRecipes c() {
+ this.f = true;
+ return this;
+ }
}