Add toolranks support

This commit is contained in:
OgelGames 2019-12-30 20:50:23 +11:00
parent 7ea70d5595
commit a75ebcd691
3 changed files with 10 additions and 1 deletions

View File

@ -30,4 +30,5 @@ read_globals = {
"frame",
"intllib",
"mg",
"toolranks",
}

View File

@ -232,6 +232,14 @@ local function add_ore(modname, description, mineral_name, oredef)
end
end
-- Toolranks support
if minetest.get_modpath("toolranks") then
minetest.override_item(fulltool_name, {
original_description = tdef.description,
description = toolranks.create_description(tdef.description, 0, 1),
after_use = toolranks.new_afteruse})
end
minetest.register_alias(tool_name .. tool_post, fulltool_name)
if use_frame then
frame.register(fulltool_name)

View File

@ -1,4 +1,4 @@
name = moreores
description = Adds new ore types.
depends = default
optional_depends = carts,farming,frame,intllib,mg
optional_depends = carts,farming,frame,intllib,mg,toolranks