|
3 | 3 | import net.minecraft.server.MinecraftServer;
|
4 | 4 | import net.minecraft.world.item.crafting.RecipeHolder;
|
5 | 5 | import org.bukkit.NamespacedKey;
|
| 6 | +import org.bukkit.craftbukkit.inventory.trim.CraftTrimPattern; |
6 | 7 | import org.bukkit.inventory.RecipeChoice;
|
7 | 8 | import org.bukkit.inventory.SmithingTrimRecipe;
|
| 9 | +import org.bukkit.inventory.meta.trim.TrimPattern; |
8 | 10 |
|
9 | 11 | public class CraftSmithingTrimRecipe extends SmithingTrimRecipe implements CraftRecipe {
|
10 | 12 |
|
11 |
| - public CraftSmithingTrimRecipe(NamespacedKey key, RecipeChoice template, RecipeChoice base, RecipeChoice addition) { |
12 |
| - super(key, template, base, addition); |
| 13 | + public CraftSmithingTrimRecipe(NamespacedKey key, RecipeChoice template, RecipeChoice base, RecipeChoice addition, TrimPattern pattern) { |
| 14 | + super(key, template, base, addition, pattern); |
13 | 15 | }
|
14 | 16 | // Paper start - Option to prevent data components copy
|
15 |
| - public CraftSmithingTrimRecipe(NamespacedKey key, RecipeChoice template, RecipeChoice base, RecipeChoice addition, boolean copyDataComponents) { |
16 |
| - super(key, template, base, addition, copyDataComponents); |
| 17 | + public CraftSmithingTrimRecipe(NamespacedKey key, RecipeChoice template, RecipeChoice base, RecipeChoice addition, TrimPattern pattern, boolean copyDataComponents) { |
| 18 | + super(key, template, base, addition, pattern, copyDataComponents); |
17 | 19 | }
|
18 | 20 | // Paper end - Option to prevent data components copy
|
19 | 21 |
|
20 | 22 | public static CraftSmithingTrimRecipe fromBukkitRecipe(SmithingTrimRecipe recipe) {
|
21 | 23 | if (recipe instanceof CraftSmithingTrimRecipe) {
|
22 | 24 | return (CraftSmithingTrimRecipe) recipe;
|
23 | 25 | }
|
24 |
| - CraftSmithingTrimRecipe ret = new CraftSmithingTrimRecipe(recipe.getKey(), recipe.getTemplate(), recipe.getBase(), recipe.getAddition(), recipe.willCopyDataComponents()); // Paper - Option to prevent data components copy |
| 26 | + CraftSmithingTrimRecipe ret = new CraftSmithingTrimRecipe(recipe.getKey(), recipe.getTemplate(), recipe.getBase(), recipe.getAddition(), recipe.getTrimPattern(), recipe.willCopyDataComponents()); // Paper - Option to prevent data components copy |
25 | 27 | return ret;
|
26 | 28 | }
|
27 | 29 |
|
28 | 30 | @Override
|
29 | 31 | public void addToCraftingManager() {
|
30 |
| - final SmithingTrimRecipe recipe = new SmithingTrimRecipe( |
31 |
| - this.toNMSOptional(this.getTemplate(), false), |
32 |
| - this.toNMSOptional(this.getBase(), false), |
33 |
| - this.toNMSOptional(this.getAddition(), false), |
| 32 | + final net.minecraft.world.item.crafting.SmithingTrimRecipe recipe = new net.minecraft.world.item.crafting.SmithingTrimRecipe( |
| 33 | + this.toNMS(this.getTemplate(), false), |
| 34 | + this.toNMS(this.getBase(), false), |
| 35 | + this.toNMS(this.getAddition(), false), |
| 36 | + CraftTrimPattern.bukkitToMinecraftHolder(this.getTrimPattern()), |
34 | 37 | this.willCopyDataComponents()
|
35 | 38 | );
|
36 | 39 | MinecraftServer.getServer().getRecipeManager().addRecipe(new RecipeHolder<>(CraftRecipe.toMinecraft(this.getKey()), recipe));
|
|
0 commit comments