Paper/nms-patches/RecipeFireworks.patch

21 Zeilen
754 B
Diff

2015-05-25 12:37:24 +02:00
--- a/net/minecraft/server/RecipeFireworks.java
+++ b/net/minecraft/server/RecipeFireworks.java
2016-05-10 13:47:39 +02:00
@@ -4,11 +4,15 @@
import java.util.ArrayList;
2016-05-10 13:47:39 +02:00
import javax.annotation.Nullable;
-public class RecipeFireworks implements IRecipe {
+public class RecipeFireworks extends ShapelessRecipes implements IRecipe { // CraftBukkit - added extends
private ItemStack a;
2015-02-26 23:41:06 +01:00
- 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;