Skip to content

Commit

Permalink
Fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
modmuss50 committed Oct 15, 2024
1 parent 2986a62 commit 95bead5
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ public long insert(ItemVariant resource, long maxAmount, TransactionContext tran

ItemStack stack = resource.toStack((int) maxAmount);

if (!stack.isEmpty() || !stack.getItem().canBeNested()) return 0;
if (stack.isEmpty() || !stack.getItem().canBeNested()) return 0;

var builder = new BundleContentsComponent.Builder(bundleContents());

Expand Down

0 comments on commit 95bead5

Please sign in to comment.