remove lava buckets as fuel

This commit is contained in:
Pyritie 2025-08-10 00:13:25 +01:00
parent fbbfe31ba8
commit e59dc4d57d
2 changed files with 10 additions and 0 deletions

View file

@ -27,4 +27,10 @@ function registerMinecraftItemModifications(event) {
event.modify('minecraft:netherite_leggings', item => {
item.maxDamage = 960
})
// Removes lava buckets as fuel
event.modify('minecraft:lava_bucket', item => {
item.burnTime = 0
})
}