summaryrefslogtreecommitdiffstats
path: root/nms-patches/RecipeFireworks.patch
blob: 5ce9b621dc48ab8787013abfb43d76fc0e5ac2b8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
--- a/net/minecraft/server/RecipeFireworks.java
+++ b/net/minecraft/server/RecipeFireworks.java
@@ -1,14 +1,16 @@
 package net.minecraft.server;
 
-public class RecipeFireworks extends IRecipeComplex {
+public class RecipeFireworks extends ShapelessRecipes implements IRecipe { // CraftBukkit - added extends
 
     private static final RecipeItemStack a = RecipeItemStack.a(Items.PAPER);
     private static final RecipeItemStack b = RecipeItemStack.a(Items.GUNPOWDER);
     private static final RecipeItemStack c = RecipeItemStack.a(Items.FIREWORK_STAR);
 
+    // CraftBukkit start - Delegate to new parent class with bogus info
     public RecipeFireworks(MinecraftKey minecraftkey) {
-        super(minecraftkey);
+        super(minecraftkey, "", new ItemStack(Items.FIREWORK_ROCKET, 0), NonNullList.a(RecipeItemStack.a, RecipeItemStack.a(Items.GUNPOWDER)));
     }
+    // CraftBukkit end
 
     public boolean a(IInventory iinventory, World world) {
         if (!(iinventory instanceof InventoryCrafting)) {