mirror of
https://github.com/PaperMC/Paper.git
synced 2025-01-10 03:52:45 +01:00
40c8954e17
By: md_5 <git@md-5.net>
41 lines
1.5 KiB
Diff
41 lines
1.5 KiB
Diff
--- a/net/minecraft/server/ShapelessRecipes.java
|
|
+++ b/net/minecraft/server/ShapelessRecipes.java
|
|
@@ -5,11 +5,16 @@
|
|
import com.google.gson.JsonObject;
|
|
import java.util.ArrayList;
|
|
import java.util.Iterator;
|
|
+// CraftBukkit start
|
|
+import org.bukkit.craftbukkit.inventory.CraftItemStack;
|
|
+import org.bukkit.craftbukkit.inventory.CraftShapelessRecipe;
|
|
+// CraftBukkit end
|
|
|
|
public class ShapelessRecipes extends IRecipe {
|
|
|
|
private final ItemStack result;
|
|
private final NonNullList<RecipeItemStack> ingredients;
|
|
+ public MinecraftKey key; // CraftBukkit
|
|
|
|
public ShapelessRecipes(String s, ItemStack itemstack, NonNullList<RecipeItemStack> nonnulllist) {
|
|
super(s);
|
|
@@ -17,6 +22,21 @@
|
|
this.ingredients = nonnulllist;
|
|
}
|
|
|
|
+ // CraftBukkit start
|
|
+ @SuppressWarnings("unchecked")
|
|
+ public org.bukkit.inventory.ShapelessRecipe toBukkitRecipe() {
|
|
+ CraftItemStack result = CraftItemStack.asCraftMirror(this.result);
|
|
+ CraftShapelessRecipe recipe = new CraftShapelessRecipe(result, this);
|
|
+ for (RecipeItemStack list : this.ingredients) {
|
|
+ if (list != null) {
|
|
+ net.minecraft.server.ItemStack stack = list.choices[0];
|
|
+ recipe.addIngredient(org.bukkit.craftbukkit.util.CraftMagicNumbers.getMaterial(stack.getItem()), stack.getData());
|
|
+ }
|
|
+ }
|
|
+ return recipe;
|
|
+ }
|
|
+ // CraftBukkit end
|
|
+
|
|
public ItemStack b() {
|
|
return this.result;
|
|
}
|