Paper/nms-patches/RecipeFireworks.patch

21 lines
776 B
Diff
Raw Normal View History

2015-05-25 12:37:24 +02:00
--- a/net/minecraft/server/RecipeFireworks.java
+++ b/net/minecraft/server/RecipeFireworks.java
2016-11-17 02:41:03 +01:00
@@ -3,13 +3,16 @@
import com.google.common.collect.Lists;
import java.util.ArrayList;
2017-05-30 13:25:59 +02:00
-public class RecipeFireworks implements IRecipe {
+public class RecipeFireworks extends ShapelessRecipes implements IRecipe { // CraftBukkit - added extends
2017-05-30 13:25:59 +02:00
private ItemStack a;
2015-02-26 23:41:06 +01:00
+ // CraftBukkit start - Delegate to new parent class with bogus info
2016-11-17 02:41:03 +01:00
public RecipeFireworks() {
2017-05-14 04:00:00 +02:00
+ super("", new ItemStack(Items.FIREWORKS, 0, 0), NonNullList.a(RecipeItemStack.a, RecipeItemStack.a(Items.GUNPOWDER)));
2017-05-30 13:25:59 +02:00
this.a = ItemStack.a;
2016-11-17 02:41:03 +01:00
}
+ // CraftBukkit end
public boolean a(InventoryCrafting inventorycrafting, World world) {
2017-05-30 13:25:59 +02:00
this.a = ItemStack.a;