Started by
alki89
on
Topic category: Help with Minecraft modding (Java Edition)
i am making a container and i want to make it have a max stack count of 96 instead of 64.
for example, in a chest, iron can get max 64 per stack but i want to make it max 96 per stack
does anybody know how to do it?
have you tried setting the gui slot stack size above 64?
yes i tried but it didn't work with every item, it worked only with custom items
I don't think you can do this easily. Stack size uses either the stack size of the item or the stack size of the container, whichever one is lowest. Therefore, most vanilla items will only stack up to 64 even if the container can support higher stack sizes, as there is no way to force an item to stack up to the container's maximum stack size within MCreator's interface (except for custom items with a high stack size set).
I am almost certain that there would be some way to do this with custom coding, but I have no clue what that code would be, or how complex it would be.
oh, thanks anyway