mirror of
https://github.com/mt-mods/plantlife_modpack.git
synced 2024-11-05 09:50:27 +01:00
34 lines
1.3 KiB
Lua
34 lines
1.3 KiB
Lua
-----------------------------------------------------------------------------------------------
|
|
local title = "Ferns" -- former "Archae Plantae"
|
|
local version = "0.2.0"
|
|
local mname = "ferns" -- former "archaeplantae"
|
|
-----------------------------------------------------------------------------------------------
|
|
-- (by Mossmanikin)
|
|
-- License (everything): WTFPL
|
|
-----------------------------------------------------------------------------------------------
|
|
abstract_ferns = {}
|
|
|
|
dofile(minetest.get_modpath("ferns").."/settings.lua")
|
|
|
|
if abstract_ferns.config.enable_lady_fern == true then
|
|
dofile(minetest.get_modpath("ferns").."/fern.lua")
|
|
end
|
|
|
|
if abstract_ferns.config.enable_horsetails == true then
|
|
dofile(minetest.get_modpath("ferns").."/horsetail.lua")
|
|
end
|
|
|
|
if abstract_ferns.config.enable_treefern == true then
|
|
dofile(minetest.get_modpath("ferns").."/treefern.lua")
|
|
end
|
|
|
|
if abstract_ferns.config.enable_giant_treefern == true then
|
|
dofile(minetest.get_modpath("ferns").."/gianttreefern.lua")
|
|
end
|
|
|
|
dofile(minetest.get_modpath("ferns").."/crafting.lua")
|
|
|
|
-----------------------------------------------------------------------------------------------
|
|
print("[Mod] "..title.." ["..version.."] ["..mname.."] Loaded...")
|
|
-----------------------------------------------------------------------------------------------
|