mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-09 20:30:28 +01:00
18 lines
764 B
Diff
18 lines
764 B
Diff
--- /home/matt/mc-dev-private//net/minecraft/server/RecipeMapClone.java 2015-02-26 22:40:23.051608134 +0000
|
|
+++ src/main/java/net/minecraft/server/RecipeMapClone.java 2015-02-26 22:40:23.051608134 +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;
|