Skip to content

Commit

Permalink
Fix Issues with Transporting Some Items to Some Inventories (#2648)
Browse files Browse the repository at this point in the history
  • Loading branch information
IntegerLimit authored Nov 10, 2024
1 parent 45cf9a8 commit d747c98
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions src/main/java/gregtech/api/util/GTTransferUtils.java
Original file line number Diff line number Diff line change
Expand Up @@ -175,9 +175,6 @@ public static ItemStack insertItem(IItemHandler handler, ItemStack stack, boolea
if (handler == null || stack.isEmpty()) {
return stack;
}
if (!stack.isStackable()) {
return insertToEmpty(handler, stack, simulate);
}

IntList emptySlots = new IntArrayList();
int slots = handler.getSlots();
Expand Down

0 comments on commit d747c98

Please sign in to comment.