#Is it possible to register unstackable blocks?

4 messages · Page 1 of 1 (latest)

zinc summit
#

I'm trying to register a new block, I want to make it unstackable like beds. I don't see a method for block stack size in the wiki though, is it undocumented or just impossible?

idle capeBOT
#

Once your ticket has been resolved, please close it with </ticket close:1054771505520717835> command!

vernal inlet
#

you have the block item builder with .item()
example:

StartupEvents.registry("block", event => {
    event.create("block")
    .item(item => {
        item.maxStackSize(1)
    })
})```
zinc summit