Merge branch 'dev' into feature/create-6

This commit is contained in:
Pyritie 2025-05-29 21:01:44 +01:00
commit 8a283343e4
29 changed files with 524 additions and 355 deletions

View file

@ -0,0 +1,16 @@
// priority: 0
function registerConstructionWandsItemModifications(event) {
// Increase durability of all construction wands
event.modify('constructionwand:stone_wand', item => {
item.maxDamage = 791
})
event.modify('constructionwand:iron_wand', item => {
item.maxDamage = 2303
})
event.modify('constructionwand:diamond_wand', item => {
item.maxDamage = 12286
})
}

View file

@ -27,6 +27,7 @@ BlockEvents.modification(event => {
*/
ItemEvents.modification(event => {
registerBeneathItemModifications(event)
registerConstructionWandsItemModifications(event)
registerMinecraftItemModifications(event)
})