2021-08-09 23:52:38 -04:00

15 lines
433 B
Lua

local modpath = minetest.get_modpath("fl_mapgen")
dofile(modpath .. "/aliases.lua")
dofile(modpath .. "/abm.lua")
dofile(modpath .. "/biomes.lua")
--must be after biomes
dofile(modpath .. "/biome_sky.lua")
dofile(modpath .. "/ores.lua")
dofile(modpath .. "/trees.lua")
dofile(modpath .. "/decorations.lua")
dofile(modpath .. "/dungeon/init.lua")
--at the end as this contains register_on_generateds
dofile(modpath .. "/other.lua")