2015-05-25 12:37:24 +02:00
|
|
|
--- a/net/minecraft/server/ShapelessRecipes.java
|
|
|
|
+++ b/net/minecraft/server/ShapelessRecipes.java
|
2019-01-02 05:56:21 +01:00
|
|
|
@@ -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;
|
2014-11-25 22:32:16 +01:00
|
|
|
+// CraftBukkit start
|
|
|
|
+import org.bukkit.craftbukkit.inventory.CraftItemStack;
|
2019-01-02 05:56:21 +01:00
|
|
|
+import org.bukkit.craftbukkit.inventory.CraftRecipe;
|
2014-11-25 22:32:16 +01:00
|
|
|
+import org.bukkit.craftbukkit.inventory.CraftShapelessRecipe;
|
|
|
|
+// CraftBukkit end
|
2017-05-14 04:00:00 +02:00
|
|
|
|
2019-04-23 04:00:00 +02:00
|
|
|
public class ShapelessRecipes implements RecipeCrafting {
|
2014-11-25 22:32:16 +01:00
|
|
|
|
2019-01-02 05:56:21 +01:00
|
|
|
@@ -20,6 +25,20 @@
|
2017-05-14 04:00:00 +02:00
|
|
|
this.ingredients = nonnulllist;
|
2014-11-25 22:32:16 +01:00
|
|
|
}
|
2015-02-26 23:41:06 +01:00
|
|
|
|
2014-11-25 22:32:16 +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);
|
2018-08-17 12:40:54 +02:00
|
|
|
+
|
2017-05-14 04:00:00 +02:00
|
|
|
+ for (RecipeItemStack list : this.ingredients) {
|
2019-01-02 05:56:21 +01:00
|
|
|
+ recipe.addIngredient(CraftRecipe.toBukkit(list));
|
2014-11-25 22:32:16 +01:00
|
|
|
+ }
|
|
|
|
+ return recipe;
|
|
|
|
+ }
|
|
|
|
+ // CraftBukkit end
|
2015-02-26 23:41:06 +01:00
|
|
|
+
|
2019-04-23 04:00:00 +02:00
|
|
|
@Override
|
2018-07-15 02:00:00 +02:00
|
|
|
public MinecraftKey getKey() {
|
2018-08-26 04:00:00 +02:00
|
|
|
return this.key;
|