summaryrefslogtreecommitdiffstats
path: root/nms-patches/RecipeMapClone.patch
diff options
context:
space:
mode:
authormd_5 <git@md-5.net>2018-07-15 10:00:00 +1000
committermd_5 <git@md-5.net>2018-07-15 10:00:00 +1000
commit421c1728c81e2f729dff88da2ac96535d2b8e5e8 (patch)
tree6c51d93e811d1eb86b68461a42fc5cf03b168b0c /nms-patches/RecipeMapClone.patch
parent57ab4cfc6f4ff526d44319d9b8c79f6848db2de7 (diff)
downloadcraftbukkit-421c1728c81e2f729dff88da2ac96535d2b8e5e8.tar
craftbukkit-421c1728c81e2f729dff88da2ac96535d2b8e5e8.tar.gz
craftbukkit-421c1728c81e2f729dff88da2ac96535d2b8e5e8.tar.lz
craftbukkit-421c1728c81e2f729dff88da2ac96535d2b8e5e8.tar.xz
craftbukkit-421c1728c81e2f729dff88da2ac96535d2b8e5e8.zip
Update to Minecraft 1.13-pre7
Diffstat (limited to 'nms-patches/RecipeMapClone.patch')
-rw-r--r--nms-patches/RecipeMapClone.patch16
1 files changed, 8 insertions, 8 deletions
diff --git a/nms-patches/RecipeMapClone.patch b/nms-patches/RecipeMapClone.patch
index 04057272..b8016765 100644
--- a/nms-patches/RecipeMapClone.patch
+++ b/nms-patches/RecipeMapClone.patch
@@ -1,17 +1,17 @@
--- a/net/minecraft/server/RecipeMapClone.java
+++ b/net/minecraft/server/RecipeMapClone.java
-@@ -1,8 +1,12 @@
+@@ -1,10 +1,12 @@
package net.minecraft.server;
--public class RecipeMapClone implements IRecipe {
+-public class RecipeMapClone extends IRecipeComplex {
+public class RecipeMapClone extends ShapelessRecipes implements IRecipe { // CraftBukkit - added extends
-- public RecipeMapClone() {}
+ // CraftBukkit start - Delegate to new parent class
-+ public RecipeMapClone() {
-+ super("", new ItemStack(Items.MAP, 0, -1), NonNullList.a(RecipeItemStack.a, RecipeItemStack.a(Items.MAP)));
-+ }
+ public RecipeMapClone(MinecraftKey minecraftkey) {
+- super(minecraftkey);
++ super(minecraftkey, "", new ItemStack(Items.MAP, 0), NonNullList.a(RecipeItemStack.a, RecipeItemStack.a(Items.MAP)));
+ }
+ // CraftBukkit end
- public boolean a(InventoryCrafting inventorycrafting, World world) {
- int i = 0;
+ public boolean a(IInventory iinventory, World world) {
+ if (!(iinventory instanceof InventoryCrafting)) {