Paper/nms-patches/ShapelessRecipes.patch

36 lines
1.1 KiB
Diff
Raw Normal View History

2015-05-25 12:37:24 +02:00
--- a/net/minecraft/server/ShapelessRecipes.java
+++ b/net/minecraft/server/ShapelessRecipes.java
@@ -5,6 +5,11 @@
2017-05-19 13:00:13 +02:00
import com.google.gson.JsonParseException;
2018-07-15 02:00:00 +02:00
import it.unimi.dsi.fastutil.ints.IntList;
2016-11-17 02:41:03 +01:00
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
2017-05-14 04:00:00 +02:00
2017-05-30 13:25:59 +02:00
public class ShapelessRecipes implements IRecipe {
@@ -20,6 +25,20 @@
2017-05-14 04:00:00 +02:00
this.ingredients = nonnulllist;
}
2015-02-26 23:41:06 +01:00
+ // CraftBukkit start
+ @SuppressWarnings("unchecked")
+ public org.bukkit.inventory.ShapelessRecipe toBukkitRecipe() {
+ CraftItemStack result = CraftItemStack.asCraftMirror(this.result);
+ CraftShapelessRecipe recipe = new CraftShapelessRecipe(result, this);
2018-08-26 04:00:00 +02:00
+ recipe.setGroup(this.group);
+
2017-05-14 04:00:00 +02:00
+ for (RecipeItemStack list : this.ingredients) {
+ recipe.addIngredient(CraftRecipe.toBukkit(list));
+ }
+ return recipe;
+ }
+ // CraftBukkit end
2015-02-26 23:41:06 +01:00
+
2018-07-15 02:00:00 +02:00
public MinecraftKey getKey() {
2018-08-26 04:00:00 +02:00
return this.key;
2018-07-15 02:00:00 +02:00
}