mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-09 20:30:28 +01:00
35 lines
1.3 KiB
Diff
35 lines
1.3 KiB
Diff
--- a/net/minecraft/server/RecipesBanner.java
|
|
+++ b/net/minecraft/server/RecipesBanner.java
|
|
@@ -22,9 +22,13 @@
|
|
|
|
static class SyntheticClass_1 { }
|
|
|
|
- static class AddRecipe implements IRecipe {
|
|
+ static class AddRecipe extends ShapelessRecipes implements IRecipe { // CraftBukkit - added extends
|
|
|
|
- private AddRecipe() {}
|
|
+ // CraftBukkit start - Delegate to new parent class with bogus info
|
|
+ private AddRecipe() {
|
|
+ super(new ItemStack(Items.BANNER, 0, 0), java.util.Arrays.asList(new ItemStack(Items.BANNER)));
|
|
+ }
|
|
+ // CraftBukkit end
|
|
|
|
public boolean a(InventoryCrafting inventorycrafting, World world) {
|
|
boolean flag = false;
|
|
@@ -212,9 +216,13 @@
|
|
}
|
|
}
|
|
|
|
- static class DuplicateRecipe implements IRecipe {
|
|
+ static class DuplicateRecipe extends ShapelessRecipes implements IRecipe { // CraftBukkit - added extends
|
|
|
|
- private DuplicateRecipe() {}
|
|
+ // CraftBukkit start - Delegate to new parent class with bogus info
|
|
+ private DuplicateRecipe() {
|
|
+ super(new ItemStack(Items.BANNER, 0, 0), java.util.Arrays.asList(new ItemStack(Items.DYE, 0, 5)));
|
|
+ }
|
|
+ // CraftBukkit end
|
|
|
|
public boolean a(InventoryCrafting inventorycrafting, World world) {
|
|
ItemStack itemstack = null;
|