forked from MineClone5/MineClone5
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:
parent
2c231559be
commit
7ae73bcf47
|
@ -257,7 +257,7 @@ minetest.register_tool("mcl_farming:hoe_diamond", {
|
||||||
hoey = { speed = 8, level = 5, uses = 1562 }
|
hoey = { speed = 8, level = 5, uses = 1562 }
|
||||||
},
|
},
|
||||||
_mcl_upgradable = true,
|
_mcl_upgradable = true,
|
||||||
_mcl_upgrade_item = "mcl_tools:hoe_netherite"
|
_mcl_upgrade_item = "mcl_farming:hoe_netherite"
|
||||||
})
|
})
|
||||||
|
|
||||||
minetest.register_craft({
|
minetest.register_craft({
|
||||||
|
|
Loading…
Reference in New Issue