diff options
author | Calinou <calinou9999spam@gmail.com> | 2013-10-29 09:46:50 -0700 |
---|---|---|
committer | Calinou <calinou9999spam@gmail.com> | 2013-10-29 09:46:50 -0700 |
commit | b391e707e1693a27d6047a4f1144e3434984f50a (patch) | |
tree | d9188a1153d7b22c37ef256311d5a62950ef0a42 /init.lua | |
parent | 76b04dd3bea51b9224c102c781055c2836966d1d (diff) | |
parent | 4507ebddb97444e4b38e895a443304fe9e712db8 (diff) |
Merge pull request #5 from Novatux/master
Fix hoes and add mg support
Diffstat (limited to 'init.lua')
-rw-r--r-- | init.lua | 15 |
1 files changed, 10 insertions, 5 deletions
@@ -61,7 +61,7 @@ local function hoe_on_use(itemstack, user, pointed_thing, uses) pos = pt.under, gain = 0.5, }) - --itemstack:add_wear(65535/(uses-1)) + itemstack:add_wear(65535/(uses-1)) return itemstack end @@ -175,13 +175,13 @@ local function add_ore(modname, description, mineral_name, oredef) minetest.register_ore(oredef.oredef) - for toolname, tdef in pairs(oredef.tools) do + for toolname, tooldef in pairs(oredef.tools) do local tdef = { description = "", inventory_image = toolimg_base .. toolname .. ".png", tool_capabilities = { 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 tdef.description = S("%s Hoe"):format(S(description)) - local uses = tdef.uses - tdef.uses = nil + local uses = tooldef.uses + tooldef.uses = nil tdef.on_use = function(itemstack, user, pointed_thing) return hoe_on_use(itemstack, user, pointed_thing, uses) end @@ -359,4 +359,9 @@ minetest.register_node("moreores:copper_rail", { }, }) +-- mg suppport +if minetest.get_modpath("mg") then + dofile(modpath.."/mg.lua") +end + print(S("[moreores] loaded.")) |