mirror of
https://github.com/minetest-mods/moreores.git
synced 2024-12-22 13:52:25 +01:00
Really fix hoes this time.
This commit is contained in:
parent
76b04dd3be
commit
9e06a2ed41
10
init.lua
10
init.lua
@ -61,7 +61,7 @@ local function hoe_on_use(itemstack, user, pointed_thing, uses)
|
|||||||
pos = pt.under,
|
pos = pt.under,
|
||||||
gain = 0.5,
|
gain = 0.5,
|
||||||
})
|
})
|
||||||
--itemstack:add_wear(65535/(uses-1))
|
itemstack:add_wear(65535/(uses-1))
|
||||||
return itemstack
|
return itemstack
|
||||||
end
|
end
|
||||||
|
|
||||||
@ -175,13 +175,13 @@ local function add_ore(modname, description, mineral_name, oredef)
|
|||||||
|
|
||||||
minetest.register_ore(oredef.oredef)
|
minetest.register_ore(oredef.oredef)
|
||||||
|
|
||||||
for toolname, tdef in pairs(oredef.tools) do
|
for toolname, tooldef in pairs(oredef.tools) do
|
||||||
local tdef = {
|
local tdef = {
|
||||||
description = "",
|
description = "",
|
||||||
inventory_image = toolimg_base .. toolname .. ".png",
|
inventory_image = toolimg_base .. toolname .. ".png",
|
||||||
tool_capabilities = {
|
tool_capabilities = {
|
||||||
max_drop_level=3,
|
max_drop_level=3,
|
||||||
groupcaps=tdef
|
groupcaps=tooldef
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -204,8 +204,8 @@ local function add_ore(modname, description, mineral_name, oredef)
|
|||||||
|
|
||||||
if toolname == "hoe" then
|
if toolname == "hoe" then
|
||||||
tdef.description = S("%s Hoe"):format(S(description))
|
tdef.description = S("%s Hoe"):format(S(description))
|
||||||
local uses = tdef.uses
|
local uses = tooldef.uses
|
||||||
tdef.uses = nil
|
tooldef.uses = nil
|
||||||
tdef.on_use = function(itemstack, user, pointed_thing)
|
tdef.on_use = function(itemstack, user, pointed_thing)
|
||||||
return hoe_on_use(itemstack, user, pointed_thing, uses)
|
return hoe_on_use(itemstack, user, pointed_thing, uses)
|
||||||
end
|
end
|
||||||
|
Loading…
Reference in New Issue
Block a user