mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-05 18:31:29 +01:00
21 lines
776 B
Diff
21 lines
776 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 extends IRecipe {
|
|
+// CraftBukkit - decompile weirdness
|
|
+public class RecipeShulkerBox {
|
|
|
|
- public Dye() {}
|
|
+ public static class Dye extends ShapelessRecipes { // CraftBukkit
|
|
+
|
|
+ // 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;
|