mirror of
https://github.com/FabricMC/fabric.git
synced 2025-04-03 10:39:57 -04:00
Fix tests
This commit is contained in:
parent
2986a625c7
commit
95bead5fff
1 changed files with 1 additions and 1 deletions
|
@ -64,7 +64,7 @@ public class BundleContentsStorage implements Storage<ItemVariant> {
|
|||
|
||||
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());
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue