3
0
Mirror von https://github.com/PaperMC/Paper.git synchronisiert 2024-11-15 20:40:07 +01:00
Paper/nms-patches/RecipeTippedArrow.patch

21 Zeilen
842 B
Diff

2016-02-29 22:32:46 +01:00
--- 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) {