summaryrefslogtreecommitdiffstats
path: root/nms-patches/RecipeMapClone.patch
blob: 65c1587ff043d56c562a985b02d8385e521aa789 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
--- ../work/decompile-8eb82bde//net/minecraft/server/RecipeMapClone.java	2014-11-28 17:43:43.353707429 +0000
+++ src/main/java/net/minecraft/server/RecipeMapClone.java	2014-11-28 17:38:23.000000000 +0000
@@ -1,8 +1,12 @@
 package net.minecraft.server;
 
-public class RecipeMapClone implements IRecipe {
+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), java.util.Arrays.asList(new ItemStack(Items.MAP, 0, 0)));
+    }
+    // CraftBukkit end
 
     public boolean a(InventoryCrafting inventorycrafting, World world) {
         int i = 0;