2012-12-01 22:57:51 +06:00
|
|
|
realtest = {}
|
|
|
|
|
2013-03-24 13:48:01 +06:00
|
|
|
dofile(minetest.get_modpath("core").."/default_config.lua")
|
2013-04-23 15:30:05 +06:00
|
|
|
local user_conf = minetest.get_modpath("core").."/../config.lua"
|
|
|
|
local f = io.open(user_conf)
|
2013-03-24 13:48:01 +06:00
|
|
|
if f then
|
2013-04-23 15:30:05 +06:00
|
|
|
dofile(user_conf)
|
2013-03-24 13:48:01 +06:00
|
|
|
f:close()
|
|
|
|
end
|
2012-12-01 22:57:51 +06:00
|
|
|
dofile(minetest.get_modpath("core").."/helper_functions.lua")
|
|
|
|
dofile(minetest.get_modpath("core").."/drop.lua")
|
2012-12-02 14:49:13 +06:00
|
|
|
dofile(minetest.get_modpath("core").."/place.lua")
|
2012-12-02 15:21:54 +06:00
|
|
|
dofile(minetest.get_modpath("core").."/falling.lua")
|
2012-12-01 22:57:51 +06:00
|
|
|
dofile(minetest.get_modpath("core").."/seasons.lua")
|
|
|
|
dofile(minetest.get_modpath("core").."/creative.lua")
|
2013-02-09 14:06:34 +06:00
|
|
|
dofile(minetest.get_modpath("core").."/player.lua")
|
2013-04-22 15:14:49 +06:00
|
|
|
dofile(minetest.get_modpath("core").."/stairs_and_slabs.lua")
|
|
|
|
dofile(minetest.get_modpath("core").."/legacy.lua")
|