summaryrefslogtreecommitdiffstats
path: root/nms-patches/RecipeTippedArrow.patch
blob: 5fa5a86d62a098ad0838cd356c3bc3ca5fb9f4fb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
--- a/net/minecraft/server/RecipeTippedArrow.java
+++ b/net/minecraft/server/RecipeTippedArrow.java
@@ -2,11 +2,15 @@
 
 import java.util.Collection;
 
-class RecipeTippedArrow implements IRecipe {
+class RecipeTippedArrow extends ShapelessRecipes implements IRecipe {  // CraftBukkit - added extends
 
     private static final ItemStack[] a = new ItemStack[9];
 
-    RecipeTippedArrow() {}
+    // CraftBukkit start - Delegate to new parent class with bogus info
+    public RecipeTippedArrow() {
+        super(new ItemStack(Items.TIPPED_ARROW, 0, -1), java.util.Arrays.asList(new ItemStack(Items.ARROW, 8, 0), new ItemStack(Items.LINGERING_POTION, 0, 0)));
+    }
+    // CraftBukkit end
 
     public boolean a(InventoryCrafting inventorycrafting, World world) {
         if (inventorycrafting.i() == 3 && inventorycrafting.h() == 3) {