
Tool Modification Not Working
Closed this issue ยท 3 comments
Minecraft Version
1.20.1
KubeJS Version
2001.6.5-build.16
Rhino Version
2001.2.3-build.10
Architectury Version
9.2.14
Forge/Fabric Version
Forge 47.4.0
Describe your issue
These are all the scripts that I've tried. The game reloads the scripts with no errors, but nothing changes. None of the modifications are being applied. I've tried saving the script to both the startup_scripts and client_scripts folders.
According to the 1.20 Support channel in your discord, I'm not the only one having this mod breaking issue.
let vtools = ['minecraft:wooden_pickaxe', 'minecraft:stone_pickaxe',
'minecraft:wooden_axe', 'minecraft:stone_axe',
'minecraft:wooden_hoe', 'minecraft:stone_hoe',
'minecraft:wooden_shovel', 'minecraft:stone_shovel',
'minecraft:wooden_sword', 'minecraft:stone_sword'
]
ItemEvents.tooltip(event => {
event.add(vtools, 'Disabled. Used for Crafting Only')
})
event.addAdvanced(vtools, (item, advanced, text) => {
text.add(1, Text.red('Disabled. Used for Crafting Only'))
})
ItemEvents.modification(event => {
event.modify(vtools, item => {
item.digSpeed = 0
item.maxDamage = 0
item.attackSpeed = 0
})
ItemEvents.modification(event => {
event.modify(vtools, item => {
item.digSpeed: 0
item.maxDamage: 0
item.attackSpeed: 0
})
})
Crash report/logs
n/a
Duplicate of #662