Paper/nms-patches/RecipeMapClone.patch

18 lines
729 B
Diff
Raw Normal View History

2015-05-25 12:37:24 +02:00
--- a/net/minecraft/server/RecipeMapClone.java
+++ b/net/minecraft/server/RecipeMapClone.java
2018-07-15 02:00:00 +02:00
@@ -1,10 +1,12 @@
2016-11-17 02:41:03 +01:00
package net.minecraft.server;
2018-07-15 02:00:00 +02:00
-public class RecipeMapClone extends IRecipeComplex {
2017-05-30 13:25:59 +02:00
+public class RecipeMapClone extends ShapelessRecipes implements IRecipe { // CraftBukkit - added extends
+ // CraftBukkit start - Delegate to new parent class
2018-07-15 02:00:00 +02:00
public RecipeMapClone(MinecraftKey minecraftkey) {
- super(minecraftkey);
+ super(minecraftkey, "", new ItemStack(Items.MAP, 0), NonNullList.a(RecipeItemStack.a, RecipeItemStack.a(Items.MAP)));
}
+ // CraftBukkit end
2018-07-15 02:00:00 +02:00
public boolean a(IInventory iinventory, World world) {
if (!(iinventory instanceof InventoryCrafting)) {