mod.gems_tools: Update to patch 03ad06e:

Patch: https://github.com/AntumMT/mod-gems_tools/tree/03ad06e
master
Jordan Irwin 2019-03-14 21:11:21 -07:00
parent 648a303fe9
commit 0436798410
2 changed files with 8 additions and 2 deletions

View File

@ -508,7 +508,7 @@ The game includes the mods from the default [minetest_game](https://github.com/m
[patch.ethereal]: https://github.com/AntumMT/mod-ethereal/tree/e3ba6b1
[patch.farming_plus]: https://github.com/AntumMT/mod-farming_plus/tree/8bee49a
[patch.gems_encrustable]: https://github.com/AntumMT/mod-gems_encrustable/tree/a043b9c
[patch.gems_tools]: https://github.com/AntumMT/mod-gems_tools/tree/cc86c61
[patch.gems_tools]: https://github.com/AntumMT/mod-gems_tools/tree/03ad06e
[patch.hbarmor]: https://github.com/AntumMT/mod-hbarmor/tree/12a7dea
[patch.hbsprint]: https://github.com/AntumMT/mod-hbsprint/tree/3fb29a9
[patch.home_gui]: https://github.com/AntumMT/mod-home_gui/tree/5409fb1

View File

@ -1425,7 +1425,13 @@ minetest.register_craft({
--Generation
local mg_params = minetest.get_mapgen_params()
local mg_params = {}
if minetest.get_mapgen_setting then
mg_params.mgname = minetest.get_mapgen_setting('mg_name')
else
mg_params = minetest.get_mapgen_params()
end
if mg_params.mgname == "v6" then
default.register_ores()
default.register_mgv6_decorations()