merge beacon-branch into fork beacon branch #7

Merged
chmodsayshello merged 453 commits from VoxeLibre/VoxeLibre:beacons into beacon-"fork" 2022-07-23 11:30:49 +02:00
1 changed files with 3 additions and 2 deletions
Showing only changes of commit aee4d15a57 - Show all commits

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 }
},
})