
Cannot read NBT consistently with tools from Tetra or decipher NBT properly
Apollonu opened this issue ยท 4 comments
Minecraft Version
1.20.1
KubeJS Version
2001.6.5-build.16
Rhino Version
2001.2.3-build.6
Architectury Version
9.2.14
Forge/Fabric Version
Forge 47.3.12
Describe your issue
KubeJS cannot consistently read off NBT from tetra tools that I am trying to use in crafting. It cannot be strongNBT because there is more in the nbt, and with weakNBT it either reads every double headed tool as valid or not double headed tool as valid, sometimes it even switches in the middle of the game if it is valid or not. This is what I have currently.
const wood_types = [];
ServerEvents.tags('item', event => {
let logs = event.get('minecraft:logs').getObjectIds();
logs.forEach(log => {
log = log.toString();
if (log.indexOf('stripped') == -1 & log.indexOf('wood') == -1) {
wood_types = wood_types.push(log)
}
})
})
ServerEvents.recipes(event => {
wood_types.forEach(log => {
if (log.indexOf('palo_verde') == -1) {
let plank = log.toString();
plank = plank.replace('log', 'planks');
event.shaped(Item.of(plank, 2),
[
'A ',
'B '
],
{
A: Item.of('tetra:modular_double', '{"double/head_left":"double/basic_axe_left"}').weakNBT(),
B: log
}
).damageIngredient(Item.of('tetra:modular_double', '{"double/head_left":"double/basic_axe_left"}').weakNBT());
}
else {
event.shaped(Item.of('minecraft:birch_planks', 2),
[
'A ',
'B '
],
{
A: Item.of('tetra:modular_double', '{"double/head_left":"double/basic_axe_left"}').weakNBT(),
B: log
}
).damageIngredient(Item.of('tetra:modular_double', '{"double/head_left":"double/basic_axe_left"}').weakNBT());
}
})
wood_types.forEach(log => {
event.shaped(Item.of('minecraft:stick', 6),
[
'AB'
],
{
A: Item.of('tetra:modular_double', '{"double/head_left":"double/basic_axe_left"}').weakNBT(),
B: log
}
).damageIngredient(Item.of('tetra:modular_double', '{"double/head_left":"double/basic_axe_left"}').weakNBT());
})
})
Crash report/logs
No response
I am able to use the proper tool once at full durability, but afterward the axe stops working. The hammers do not seem to be added improperly to the recipe. Once I repair it to max damage again it works until I use it again. "Must be full durability for it to work in crafting for some reason."
There is a customNBT ingredient type that can be used for situations like this, however it is broken #660 (I believe this applies to 1.20.1 as well although it is worth checking)
The issue is that it works until it has some kind of damage on it, for some reason it is not reading the nbt after the nbt has been updated. Every single tool has a damage value but with weakNBT it just doesnt realize that it is the item it is looking for for some reason, unless there is some jank fix around this im going to have to use something else. Also I have no clue where you found that but the guy said it wouldnt be added in future versioins, appreciate you trying to help.