Skip to content

Commit

Permalink
formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
ghzdude committed Nov 3, 2023
1 parent 71f578e commit b79438f
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -601,7 +601,9 @@ public ItemStack insertItem(int slot, @Nonnull ItemStack insertedStack, boolean
ItemStack exportItems = getExportItems().getStackInSlot(0);
if (!exportItems.isEmpty() &&
!areItemStackIdentical(exportItems, insertedStack)
) return insertedStack;
) {
return insertedStack;
}

// otherwise, check virtualized inventory
if (itemsStoredInside > 0L &&
Expand Down

0 comments on commit b79438f

Please sign in to comment.