Skip to content

Commit

Permalink
fix: recipe transfer being broken
Browse files Browse the repository at this point in the history
  • Loading branch information
raoulvdberge committed Jun 20, 2024
1 parent f87e91d commit 76fba3e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
### Fixed

- Potential loading order issues on Fabric.
- Broken recipe transfer.

## [0.2.1] - 2024-06-16

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ private List<List<ItemResource>> getInputs(final IRecipeSlotsView recipeSlots) {
return recipeSlots.getSlotViews(RecipeIngredientRole.INPUT).stream().map(slotView -> {
final List<ItemStack> stacks = slotView.getItemStacks().collect(Collectors.toList());
prioritizeDisplayedStack(slotView, stacks);
return stacks.stream().map(ItemResource::ofItemStack).toList();
return stacks.stream().map(ItemResource::ofItemStack).collect(Collectors.toList());
}).toList();
}

Expand Down

0 comments on commit 76fba3e

Please sign in to comment.