#Creative Tab Item Groups manipulation?
6 messages · Page 1 of 1 (latest)
Once your ticket has been resolved, please close it with </ticket close:1054771505520717835> command!
StartupEvents.modifyCreativeTab('food_and_drinks', e => {
e.add(Ingredient.of('#kubejs:enchanted_food').stacks.toArray())
})```
there is ```add()```, ```remove()```, you just need to put what you want
is there a specific option to add items in after a certain other item?
yes
StartupEvents.modifyCreativeTab('food_and_drinks', e => {
e.addAfter('apple', 'bedrock')
e.addBefore('apple', 'piston')
})