mirror of
https://github.com/FabricMC/fabric.git
synced 2024-11-22 23:58:02 -05:00
Fix ComponentsIngredient's getMatchingStacks() not applying the component changes. (#3884)
This commit is contained in:
parent
5a8c785ea0
commit
650897126b
1 changed files with 1 additions and 1 deletions
|
@ -88,7 +88,7 @@ public class ComponentsIngredient implements CustomIngredient {
|
|||
stacks.replaceAll(stack -> {
|
||||
ItemStack copy = stack.copy();
|
||||
|
||||
stack.applyChanges(components);
|
||||
copy.applyChanges(components);
|
||||
|
||||
return copy;
|
||||
});
|
||||
|
|
Loading…
Reference in a new issue