mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-09 04:09:54 +01:00
21 lines
814 B
Diff
21 lines
814 B
Diff
--- a/net/minecraft/server/RecipeShulkerBox.java
|
|
+++ b/net/minecraft/server/RecipeShulkerBox.java
|
|
@@ -1,8 +1,15 @@
|
|
package net.minecraft.server;
|
|
|
|
-public class RecipeShulkerBox { public static class Dye implements IRecipe {
|
|
+// CraftBukkit - decompile weirdness
|
|
+public class RecipeShulkerBox {
|
|
|
|
- public Dye() {}
|
|
+ public static class Dye extends ShapelessRecipes implements IRecipe { // CraftBukkit - added extends
|
|
+
|
|
+ // CraftBukkit start - Delegate to new parent class with bogus info
|
|
+ public Dye() {
|
|
+ super("", new ItemStack(Blocks.WHITE_SHULKER_BOX, 0, 0), NonNullList.a(RecipeItemStack.a, RecipeItemStack.a(Items.DYE)));
|
|
+ }
|
|
+ // CraftBukkit end
|
|
|
|
public boolean a(InventoryCrafting inventorycrafting, World world) {
|
|
int i = 0;
|