#How do i set the NBT of an output
14 messages · Page 1 of 1 (latest)
Once your ticket has been resolved, please close it with </ticket close:1054771505520717835> command!
try putting the nbt as a string
ServerEvents.recipes(event => {
event.shapeless(
Item.of("minecraft:dandelion", '{CustomModelData: 333333}'),
[ "2x minecraft:bone_meal" ]
)
})
ServerEvents.recipes(event => {
event.shapeless(
Item.of("minecraft:dandelion", '{CustomModelData: 333333}').weakNBT(),
[ "2x minecraft:bone_meal" ]
)
})
if that doesnt work, the only thing that can be wrong is the nbt itself
