Paper/nms-patches/RecipeMapClone.patch

18 lines
682 B
Diff

--- a/net/minecraft/server/RecipeMapClone.java
+++ b/net/minecraft/server/RecipeMapClone.java
@@ -1,10 +1,12 @@
package net.minecraft.server;
-public class RecipeMapClone extends IRecipeComplex {
+public class RecipeMapClone extends ShapelessRecipes { // CraftBukkit - added extends
+ // CraftBukkit start - Delegate to new parent class
public RecipeMapClone(MinecraftKey minecraftkey) {
- super(minecraftkey);
+ super(minecraftkey, "", new ItemStack(Items.MAP), NonNullList.a(RecipeItemStack.a, RecipeItemStack.a(Items.MAP)));
}
+ // CraftBukkit end
public boolean a(InventoryCrafting inventorycrafting, World world) {
int i = 0;