Paper/nms-patches/RecipeArmorDye.patch
2016-05-10 21:47:39 +10:00

19 lines
731 B
Diff

--- a/net/minecraft/server/RecipeArmorDye.java
+++ b/net/minecraft/server/RecipeArmorDye.java
@@ -4,9 +4,13 @@
import java.util.ArrayList;
import javax.annotation.Nullable;
-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;