summaryrefslogtreecommitdiffstats
path: root/nms-patches/RecipeArmorDye.patch
blob: a6b2e219df99cb55557aaeb2d6a8d0da30c2854f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
@@ -3,9 +3,13 @@
 import com.google.common.collect.Lists;
 import java.util.ArrayList;
 
-public class RecipeArmorDye implements IRecipe {
+public class RecipeArmorDye extends ShapelessRecipes implements IRecipe { // CraftBukkit - added extends
 
-    public RecipeArmorDye() {}
+    // CraftBukkit start - Delegate to new parent class with bogus info
+    public RecipeArmorDye() {
+        super(new ItemStack(Items.LEATHER_HELMET, 0, 0), java.util.Arrays.asList(new ItemStack(Items.DYE, 0, 5)));
+    }
+    // CraftBukkit end
 
     public boolean a(InventoryCrafting inventorycrafting, World world) {
         ItemStack itemstack = null;