mirror of
https://github.com/minetest-mods/moreores.git
synced 2024-12-28 19:20:20 +01:00
Add toolranks
support (#37)
* Add toolranks support * Update the changelog for `toolranks` support
This commit is contained in:
parent
7ea70d5595
commit
3c44a9be58
@ -30,4 +30,5 @@ read_globals = {
|
|||||||
"frame",
|
"frame",
|
||||||
"intllib",
|
"intllib",
|
||||||
"mg",
|
"mg",
|
||||||
|
"toolranks",
|
||||||
}
|
}
|
||||||
|
@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
|
|||||||
|
|
||||||
## [Unreleased]
|
## [Unreleased]
|
||||||
|
|
||||||
|
### Added
|
||||||
|
|
||||||
|
- More Ores tools now have [`toolranks`](https://github.com/lisacvuk/minetest-toolranks) support.
|
||||||
|
|
||||||
## [2.0.0] - 2019-11-25
|
## [2.0.0] - 2019-11-25
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
|
8
init.lua
8
init.lua
@ -232,6 +232,14 @@ local function add_ore(modname, description, mineral_name, oredef)
|
|||||||
end
|
end
|
||||||
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)
|
minetest.register_alias(tool_name .. tool_post, fulltool_name)
|
||||||
if use_frame then
|
if use_frame then
|
||||||
frame.register(fulltool_name)
|
frame.register(fulltool_name)
|
||||||
|
Loading…
Reference in New Issue
Block a user