mirror of
https://git.minetest.land/MineClone2/MineClone2.git
synced 2025-01-25 10:11:32 +01:00
11 lines
345 B
Lua
11 lines
345 B
Lua
local modname = minetest.get_current_modname()
|
|
local modpath = minetest.get_modpath(modname)
|
|
|
|
dofile(modpath.."/campsite.lua")
|
|
dofile(modpath.."/desert_oasis.lua")
|
|
dofile(modpath.."/forest_ruins.lua")
|
|
dofile(modpath.."/graveyard.lua")
|
|
dofile(modpath.."/obelisks.lua")
|
|
dofile(modpath.."/spider_cocoon.lua")
|
|
dofile(modpath.."/witches_circle.lua")
|