mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-05 18:31:29 +01:00
90ac03522a
This reverts commit d6e3dff7d8
.
36 lines
1.3 KiB
Diff
36 lines
1.3 KiB
Diff
--- ../work/decompile-8eb82bde//net/minecraft/server/ShapelessRecipes.java 2014-11-28 17:43:43.373707429 +0000
|
|
+++ src/main/java/net/minecraft/server/ShapelessRecipes.java 2014-11-28 17:38:22.000000000 +0000
|
|
@@ -5,6 +5,11 @@
|
|
import java.util.Iterator;
|
|
import java.util.List;
|
|
|
|
+// CraftBukkit start
|
|
+import org.bukkit.craftbukkit.inventory.CraftItemStack;
|
|
+import org.bukkit.craftbukkit.inventory.CraftShapelessRecipe;
|
|
+// CraftBukkit end
|
|
+
|
|
public class ShapelessRecipes implements IRecipe {
|
|
|
|
private final ItemStack result;
|
|
@@ -14,6 +19,20 @@
|
|
this.result = itemstack;
|
|
this.ingredients = list;
|
|
}
|
|
+
|
|
+ // CraftBukkit start
|
|
+ @SuppressWarnings("unchecked")
|
|
+ public org.bukkit.inventory.ShapelessRecipe toBukkitRecipe() {
|
|
+ CraftItemStack result = CraftItemStack.asCraftMirror(this.result);
|
|
+ CraftShapelessRecipe recipe = new CraftShapelessRecipe(result, this);
|
|
+ for (ItemStack stack : (List<ItemStack>) this.ingredients) {
|
|
+ if (stack != null) {
|
|
+ recipe.addIngredient(org.bukkit.craftbukkit.util.CraftMagicNumbers.getMaterial(stack.getItem()), stack.getData());
|
|
+ }
|
|
+ }
|
|
+ return recipe;
|
|
+ }
|
|
+ // CraftBukkit end
|
|
|
|
public ItemStack b() {
|
|
return this.result;
|