specifically for the second recipe it doesn't care about the nbt in it how can I make it so it's required
ServerEvents.recipes(event => {
event.shaped(Item.of('tacz:ammo_box', '{Creative:1b}'), [
'ABA',
'ACA',
'AAA'
], {
A: 'gobber2:gobber2_block_end',
B: 'gobber2:dragon_star',
C: 'createchromaticreturn:multiplite_tube'
}
)
event.shaped(Item.of('tacz:ammo_box', '{AllTypeCreative:1b}'), [
'ABA',
'ACA',
'AAA'
], {
A: 'gobber2:dragon_star',
B: 'create_enchantment_industry:hyper_experience_bottle',
C: Item.of('tacz:ammo_box', '{Creative:1b}')
}
)
})