mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-09 20:30:28 +01:00
90ac03522a
This reverts commit d6e3dff7d8
.
19 lines
847 B
Diff
19 lines
847 B
Diff
--- ../work/decompile-8eb82bde//net/minecraft/server/RecipeArmorDye.java 2014-11-28 17:43:43.345707429 +0000
|
|
+++ src/main/java/net/minecraft/server/RecipeArmorDye.java 2014-11-28 17:38:23.000000000 +0000
|
|
@@ -3,9 +3,13 @@
|
|
import com.google.common.collect.Lists;
|
|
import java.util.ArrayList;
|
|
|
|
-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;
|