2016-11-17 02:41:03 +01:00
|
|
|
--- a/net/minecraft/server/RecipeShulkerBox.java
|
|
|
|
+++ b/net/minecraft/server/RecipeShulkerBox.java
|
2018-07-15 02:00:00 +02:00
|
|
|
@@ -1,10 +1,12 @@
|
2017-05-14 04:00:00 +02:00
|
|
|
package net.minecraft.server;
|
2016-11-17 02:41:03 +01:00
|
|
|
|
2018-07-15 02:00:00 +02:00
|
|
|
-public class RecipeShulkerBox extends IRecipeComplex {
|
2019-04-23 04:00:00 +02:00
|
|
|
+public class RecipeShulkerBox extends ShapelessRecipes { // CraftBukkit - added extends
|
2016-11-17 02:41:03 +01:00
|
|
|
|
2018-07-15 02:00:00 +02:00
|
|
|
+ // CraftBukkit start - Delegate to new parent class with bogus info
|
|
|
|
public RecipeShulkerBox(MinecraftKey minecraftkey) {
|
|
|
|
- super(minecraftkey);
|
2019-05-03 09:41:23 +02:00
|
|
|
+ super(minecraftkey, "", new ItemStack(Blocks.WHITE_SHULKER_BOX), NonNullList.a(RecipeItemStack.a, RecipeItemStack.a(Items.BONE_MEAL)));
|
2018-07-15 02:00:00 +02:00
|
|
|
}
|
|
|
|
+ // CraftBukkit end
|
2016-11-17 02:41:03 +01:00
|
|
|
|
2019-04-23 04:00:00 +02:00
|
|
|
public boolean a(InventoryCrafting inventorycrafting, World world) {
|
|
|
|
int i = 0;
|