fix crash and netherite hoes

The item registration in mcl_farming for diamond hoes contains the wrong
upgrade_item id (mcl_tools:hoe_netherite, should me mcl_farming:). This
commit changes that.
This commit is contained in:
cora 2021-09-10 21:41:15 +02:00
parent 2c231559be
commit 7ae73bcf47
1 changed files with 1 additions and 1 deletions

View File

@ -257,7 +257,7 @@ minetest.register_tool("mcl_farming:hoe_diamond", {
hoey = { speed = 8, level = 5, uses = 1562 }
},
_mcl_upgradable = true,
_mcl_upgrade_item = "mcl_tools:hoe_netherite"
_mcl_upgrade_item = "mcl_farming:hoe_netherite"
})
minetest.register_craft({