#Crafting recipe ignoring nbt

8 messages · Page 1 of 1 (latest)

hollow axle
#

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}')
     }
   )
})
timber thicketBOT
#

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

sour goblet
#

Nbt is ignored by default

#

You need to add .weakNBT() at the end, or .strongNBT() if you want that exact nbt and nothing else

hollow axle
#

oh wow thank you

#

2 issues I've had for a while solved easily thanks to this mods

#

so real