2015-05-25 12:37:24 +02:00
|
|
|
--- a/net/minecraft/server/RecipeArmorDye.java
|
|
|
|
+++ b/net/minecraft/server/RecipeArmorDye.java
|
2018-07-15 02:00:00 +02:00
|
|
|
@@ -3,11 +3,13 @@
|
2016-11-17 02:41:03 +01:00
|
|
|
import com.google.common.collect.Lists;
|
2014-11-25 22:32:16 +01:00
|
|
|
import java.util.ArrayList;
|
|
|
|
|
2018-07-15 02:00:00 +02:00
|
|
|
-public class RecipeArmorDye extends IRecipeComplex {
|
2017-05-30 13:25:59 +02:00
|
|
|
+public class RecipeArmorDye extends ShapelessRecipes implements IRecipe { // CraftBukkit - added extends
|
2014-11-25 22:32:16 +01:00
|
|
|
|
|
|
|
+ // CraftBukkit start - Delegate to new parent class with bogus info
|
2018-07-15 02:00:00 +02:00
|
|
|
public RecipeArmorDye(MinecraftKey minecraftkey) {
|
|
|
|
- super(minecraftkey);
|
|
|
|
+ super(minecraftkey, "", new ItemStack(Items.LEATHER_HELMET, 0), NonNullList.a(RecipeItemStack.a, RecipeItemStack.a(Items.BONE_MEAL)));
|
|
|
|
}
|
2014-11-25 22:32:16 +01:00
|
|
|
+ // CraftBukkit end
|
|
|
|
|
2018-07-15 02:00:00 +02:00
|
|
|
public boolean a(IInventory iinventory, World world) {
|
|
|
|
if (!(iinventory instanceof InventoryCrafting)) {
|