diff --git a/README.md b/README.md index 3fe1ac77..394ae16f 100644 --- a/README.md +++ b/README.md @@ -17,7 +17,7 @@ The game includes the mods from the default [minetest_game](https://github.com/m * [privs][] ([CC0][lic.cc0]) * [spectator_mode][] ([WTFPL][lic.spectator_mode]) -- version: [7d68bec Git][ver.spectator_mode] *2017-03-30* * [awards][] ([LGPL][lic.lgpl2.1]) -- version: [096fe16 Git][ver.awards] *2017-02-25* ([patched][patch.awards]) ***UPDATE*** -* [antum][] ([MIT][lic.antum]) -- version: [09821b7 Git][ver.antum] *2017-08-04* +* [antum][] ([MIT][lic.antum]) -- version: [7e6851d Git][ver.antum] *2017-08-07* * buildings/ * [bridges][] ([GPL][lic.gpl3.0]) -- version: [5b5f475 Git][ver.bridges] *2015-08-23* ([patched][patch.bridges]) * [christmas][] ([MIT][lic.christmas]) -- version [d3bd872 Git][ver.christmas] *2013-01-11* ([patched][patch.christmas]) @@ -414,7 +414,7 @@ The game includes the mods from the default [minetest_game](https://github.com/m [ver.animalmaterials]: https://github.com/sapier/animalmaterials/tree/aa4697c [ver.animals]: https://github.com/sapier/animals_modpack/tree/b9d0172 [ver.animals_aggressive]: https://github.com/AntumMT/mp-animals_aggressive/tree/2c913bb -[ver.antum]: https://github.com/AntumMT/mp-antum/tree/09821b7 +[ver.antum]: https://github.com/AntumMT/mp-antum/tree/7e6851d [ver.areas]: https://github.com/ShadowNinja/areas/tree/289d0e6 [ver.awards]: https://github.com/minetest-mods/awards/tree/096fe16 [ver.away]: https://github.com/kahrl/minetest-mod-away/tree/4c1e5a9 diff --git a/mods/antum/overrides/crafting.lua b/mods/antum/overrides/crafting.lua index 5532f5fd..b0feb5f5 100644 --- a/mods/antum/overrides/crafting.lua +++ b/mods/antum/overrides/crafting.lua @@ -31,6 +31,7 @@ local modoverrides = { 'castle_weapons', 'craftguide', 'dye', + 'ethereal', 'farming', 'helicopter', 'invisibility', diff --git a/mods/antum/overrides/crafting/ethereal.lua b/mods/antum/overrides/crafting/ethereal.lua new file mode 100644 index 00000000..4ceb6f56 --- /dev/null +++ b/mods/antum/overrides/crafting/ethereal.lua @@ -0,0 +1,19 @@ +--[[ LICENSE HEADER + + MIT Licensing + + Copyright © 2017 Jordan Irwin (AntumDeluge) + + See: LICENSE.txt +]] + + +if antum.dependsSatisfied({'ethereal',}) then + antum.overrideCraftOutput({ + output = 'ethereal:bowl', + recipe = { + {'group:tree', '', 'group:tree'}, + {'', 'group:tree', ''}, + }, + }) +end