mirror of
https://github.com/PaperMC/Paper.git
synced 2025-01-09 19:49:35 +01:00
6c1c28bd14
By: md_5 <git@md-5.net>
20 lines
760 B
Diff
20 lines
760 B
Diff
--- a/net/minecraft/server/RecipeFireworks.java
|
|
+++ b/net/minecraft/server/RecipeFireworks.java
|
|
@@ -3,11 +3,15 @@
|
|
import com.google.common.collect.Lists;
|
|
import java.util.ArrayList;
|
|
|
|
-public class RecipeFireworks implements IRecipe {
|
|
+public class RecipeFireworks extends ShapelessRecipes implements IRecipe { // CraftBukkit - added extends
|
|
|
|
private ItemStack a;
|
|
|
|
- public RecipeFireworks() {}
|
|
+ // CraftBukkit start - Delegate to new parent class with bogus info
|
|
+ public RecipeFireworks() {
|
|
+ super(new ItemStack(Items.FIREWORKS, 0, 0), java.util.Arrays.asList(new ItemStack(Items.GUNPOWDER, 0, 5)));
|
|
+ }
|
|
+ // CraftBukkit end
|
|
|
|
public boolean a(InventoryCrafting inventorycrafting, World world) {
|
|
this.a = null;
|