summaryrefslogtreecommitdiffstats
path: root/nms-patches/RecipeTippedArrow.patch
blob: c828203e715ee9e0f6812de188377f2a8b690174 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
--- a/net/minecraft/server/RecipeTippedArrow.java
+++ b/net/minecraft/server/RecipeTippedArrow.java
@@ -2,9 +2,17 @@
 
 import java.util.Collection;
 
-public class RecipeTippedArrow implements IRecipe {
+public class RecipeTippedArrow extends ShapedRecipes implements IRecipe { // CraftBukkit
 
-    public RecipeTippedArrow() {}
+    // CraftBukkit start
+    public RecipeTippedArrow() {
+        super(3, 3, new ItemStack[]{
+            new ItemStack(Items.ARROW, 0), new ItemStack(Items.ARROW, 0), new ItemStack(Items.ARROW, 0),
+            new ItemStack(Items.ARROW, 0), new ItemStack(Items.LINGERING_POTION, 0), new ItemStack(Items.ARROW, 0),
+            new ItemStack(Items.ARROW, 0), new ItemStack(Items.ARROW, 0), new ItemStack(Items.ARROW, 0)
+        }, new ItemStack(Items.TIPPED_ARROW, 8));
+    }
+    // CraftBukkit end
 
     public boolean a(InventoryCrafting inventorycrafting, World world) {
         if (inventorycrafting.j() == 3 && inventorycrafting.i() == 3) {