mirror of
https://github.com/PaperMC/Paper.git
synced 2025-01-24 09:16:06 +01:00
9a7508c3ab
By: ploppyperson <nathat890@outlook.com> Also-by: md_5 <git@md-5.net>
36 lines
1.2 KiB
Diff
36 lines
1.2 KiB
Diff
--- a/net/minecraft/world/item/crafting/IRecipeComplex.java
|
|
+++ b/net/minecraft/world/item/crafting/IRecipeComplex.java
|
|
@@ -3,6 +3,15 @@
|
|
import net.minecraft.core.HolderLookup;
|
|
import net.minecraft.world.item.ItemStack;
|
|
|
|
+// CraftBukkit start
|
|
+import net.minecraft.core.IRegistryCustom;
|
|
+import org.bukkit.NamespacedKey;
|
|
+import org.bukkit.craftbukkit.inventory.CraftComplexRecipe;
|
|
+import org.bukkit.craftbukkit.inventory.CraftItemStack;
|
|
+import org.bukkit.craftbukkit.inventory.CraftRecipe;
|
|
+import org.bukkit.inventory.Recipe;
|
|
+// CraftBukkit end
|
|
+
|
|
public abstract class IRecipeComplex implements RecipeCrafting {
|
|
|
|
private final CraftingBookCategory category;
|
|
@@ -25,4 +34,17 @@
|
|
public CraftingBookCategory category() {
|
|
return this.category;
|
|
}
|
|
+
|
|
+ // CraftBukkit start
|
|
+ @Override
|
|
+ public Recipe toBukkitRecipe(NamespacedKey id) {
|
|
+ CraftItemStack result = CraftItemStack.asCraftMirror(getResultItem(IRegistryCustom.EMPTY));
|
|
+
|
|
+ CraftComplexRecipe recipe = new CraftComplexRecipe(id, result, this);
|
|
+ recipe.setGroup(this.getGroup());
|
|
+ recipe.setCategory(CraftRecipe.getCategory(this.category()));
|
|
+
|
|
+ return recipe;
|
|
+ }
|
|
+ // CraftBukkit end
|
|
}
|