I want to set the storage space of the custom box to 1 slot, but graphically it still appears as multiple slots, and clicking the second slot causes a crash.
Additionally, blocks appear to be missing in areas where there is no model.
StartupEvents.registry('block', event => {
event.create('clay_vessel')
.displayName('Clay Vessel')
.model("notreepunching:block/clay_large_vessel")
.blockEntity(entityInfo => {
entityInfo.inventory(1, 1)
entityInfo.rightClickOpensInventory()
});
});

