Skip to content

Commit

Permalink
Fix #428 Recipe transfer not working
Browse files Browse the repository at this point in the history
  • Loading branch information
mezz committed Sep 16, 2016
1 parent 0a5829b commit b19042a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/mezz/jei/util/StackHelper.java
Expand Up @@ -123,7 +123,7 @@ public Slot getSlotWithStack(@Nonnull Container container, @Nonnull Iterable<Int
Slot slot = container.getSlot(slotNumber);
if (slot != null) {
ItemStack slotStack = slot.getStack();
if (ItemStack.areItemStacksEqual(itemStack, slotStack)) {
if (ItemStack.areItemsEqual(itemStack, slotStack) && ItemStack.areItemStackTagsEqual(itemStack, slotStack)) {
return slot;
}
}
Expand Down

0 comments on commit b19042a

Please sign in to comment.