mirror of
https://github.com/PaperMC/Paper.git
synced 2025-08-09 08:32:07 -07:00
@@ -4,17 +4,17 @@
|
||||
import com.google.common.collect.Lists;
|
||||
import java.util.ArrayList;
|
||||
|
||||
-public class RecipeFireworks extends IRecipe {
|
||||
+public class RecipeFireworks extends ShapelessRecipes { // CraftBukkit
|
||||
-public class RecipeFireworks implements IRecipe {
|
||||
+public class RecipeFireworks extends ShapelessRecipes implements IRecipe { // CraftBukkit - added extends
|
||||
|
||||
private ItemStack b;
|
||||
private ItemStack a;
|
||||
|
||||
+ // CraftBukkit start - Delegate to new parent class with bogus info
|
||||
public RecipeFireworks() {
|
||||
+ super("", new ItemStack(Items.FIREWORKS, 0, 0), NonNullList.a(RecipeItemStack.a, RecipeItemStack.a(Items.GUNPOWDER)));
|
||||
this.b = ItemStack.a;
|
||||
this.a = ItemStack.a;
|
||||
}
|
||||
+ // CraftBukkit end
|
||||
|
||||
public boolean a(InventoryCrafting inventorycrafting, World world) {
|
||||
this.b = ItemStack.a;
|
||||
this.a = ItemStack.a;
|
||||
|
Reference in New Issue
Block a user