Fix crash in netherite hoe by adding netherite to uses{}

This commit is contained in:
Code-Sploit 2021-04-14 13:10:07 +00:00 committed by cora
parent 9b25567274
commit aee4d15a57
1 changed files with 3 additions and 2 deletions

View File

@ -54,7 +54,8 @@ local uses = {
stone = 132,
iron = 251,
gold = 33,
diamond = 1562,
diamond = 1562,
netherite = 2031,
}
local hoe_tt = S("Turns block into farmland")
@ -291,6 +292,6 @@ minetest.register_tool("mcl_farming:hoe_netherite", {
_repair_material = "mcl_nether:netherite_ingot",
_mcl_toollike_wield = true,
_mcl_diggroups = {
hoey = { speed = 8, level = 5, uses = 2031 }
hoey = { speed = 8, level = 5, uses = uses.netherite }
},
})