mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-05 10:20:53 +01:00
36 lines
1.1 KiB
Diff
36 lines
1.1 KiB
Diff
--- a/net/minecraft/server/ShapelessRecipes.java
|
|
+++ b/net/minecraft/server/ShapelessRecipes.java
|
|
@@ -5,6 +5,11 @@
|
|
import com.google.gson.JsonParseException;
|
|
import it.unimi.dsi.fastutil.ints.IntList;
|
|
import java.util.Iterator;
|
|
+// CraftBukkit start
|
|
+import org.bukkit.craftbukkit.inventory.CraftItemStack;
|
|
+import org.bukkit.craftbukkit.inventory.CraftRecipe;
|
|
+import org.bukkit.craftbukkit.inventory.CraftShapelessRecipe;
|
|
+// CraftBukkit end
|
|
|
|
public class ShapelessRecipes implements RecipeCrafting {
|
|
|
|
@@ -20,6 +25,20 @@
|
|
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);
|
|
+ recipe.setGroup(this.group);
|
|
+
|
|
+ for (RecipeItemStack list : this.ingredients) {
|
|
+ recipe.addIngredient(CraftRecipe.toBukkit(list));
|
|
+ }
|
|
+ return recipe;
|
|
+ }
|
|
+ // CraftBukkit end
|
|
+
|
|
@Override
|
|
public MinecraftKey getKey() {
|
|
return this.key;
|