mirror of
https://github.com/PaperMC/Paper.git
synced 2025-01-19 14:51:27 +01:00
SPIGOT-7891: Can't remove second ingredient of MerchantRecipe
By: md_5 <git@md-5.net>
This commit is contained in:
parent
fbea3cdc0c
commit
616ec5f700
@ -120,6 +120,8 @@ public class CraftMerchantRecipe extends MerchantRecipe {
|
||||
if (ingredients.size() > 1) {
|
||||
net.minecraft.world.item.ItemStack costB = CraftItemStack.asNMSCopy(ingredients.get(1));
|
||||
handle.costB = Optional.of(new ItemCost(costB.getItemHolder(), costB.getCount(), DataComponentPredicate.allOf(costB.getComponents()), costB));
|
||||
} else {
|
||||
handle.costB = Optional.empty();
|
||||
}
|
||||
return handle;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user