mod.gems_tools: Update to patch 03ad06e:
Patch: https://github.com/AntumMT/mod-gems_tools/tree/03ad06emaster
parent
648a303fe9
commit
0436798410
|
@ -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.ethereal]: https://github.com/AntumMT/mod-ethereal/tree/e3ba6b1
|
||||||
[patch.farming_plus]: https://github.com/AntumMT/mod-farming_plus/tree/8bee49a
|
[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_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.hbarmor]: https://github.com/AntumMT/mod-hbarmor/tree/12a7dea
|
||||||
[patch.hbsprint]: https://github.com/AntumMT/mod-hbsprint/tree/3fb29a9
|
[patch.hbsprint]: https://github.com/AntumMT/mod-hbsprint/tree/3fb29a9
|
||||||
[patch.home_gui]: https://github.com/AntumMT/mod-home_gui/tree/5409fb1
|
[patch.home_gui]: https://github.com/AntumMT/mod-home_gui/tree/5409fb1
|
||||||
|
|
|
@ -1425,7 +1425,13 @@ minetest.register_craft({
|
||||||
|
|
||||||
--Generation
|
--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
|
if mg_params.mgname == "v6" then
|
||||||
default.register_ores()
|
default.register_ores()
|
||||||
default.register_mgv6_decorations()
|
default.register_mgv6_decorations()
|
||||||
|
|
Loading…
Reference in New Issue