Skip to content

Commit

Permalink
Fix StackIdentifier#shrink not consuming stacks of count 1
Browse files Browse the repository at this point in the history
  • Loading branch information
WolfyScript committed Dec 6, 2023
1 parent e69deee commit 15b0729
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ default ItemStack shrink(ItemStack stack, int count, boolean useRemains, @Nullab
}
}
return originalStack;
}).orElse(stack));
}).orElse(resultStack));
}

/**
Expand Down

0 comments on commit 15b0729

Please sign in to comment.