summaryrefslogtreecommitdiffstats
path: root/nms-patches/ShapelessRecipes.patch
blob: 9e7a932a40ac48216d05d135d487ba56cf60a855 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
--- a/net/minecraft/server/ShapelessRecipes.java
+++ b/net/minecraft/server/ShapelessRecipes.java
@@ -5,6 +5,13 @@
 import com.google.gson.JsonParseException;
 import it.unimi.dsi.fastutil.ints.IntList;
 import java.util.Iterator;
+// CraftBukkit start
+import java.util.ArrayList;
+import java.util.List;
+import org.bukkit.craftbukkit.inventory.CraftItemStack;
+import org.bukkit.craftbukkit.inventory.CraftShapelessRecipe;
+import org.bukkit.craftbukkit.util.CraftMagicNumbers;
+// CraftBukkit end
 
 public class ShapelessRecipes implements IRecipe {
 
@@ -20,6 +27,26 @@
         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) {
+            list.buildChoices();
+
+            List<org.bukkit.Material> choices = new ArrayList<>(list.choices.length);
+            for (ItemStack i : list.choices) {
+                choices.add(CraftMagicNumbers.getMaterial(i.getItem()));
+            }
+            recipe.addIngredient(new org.bukkit.inventory.RecipeChoice.MaterialChoice(choices));
+        }
+        return recipe;
+    }
+    // CraftBukkit end
+
     public MinecraftKey getKey() {
         return this.key;
     }