2012-12-01 22:57:51 +06:00
|
|
|
realtest = {}
|
|
|
|
|
2013-03-24 13:48:01 +06:00
|
|
|
local worldconf = minetest.get_worldpath().."/realtest.conf.lua"
|
|
|
|
|
|
|
|
dofile(minetest.get_modpath("core").."/default_config.lua")
|
|
|
|
local f = io.open(worldconf)
|
|
|
|
if f then
|
|
|
|
dofile(worldconf)
|
|
|
|
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")
|
|
|
|
dofile(minetest.get_modpath("core").."/stairs_and_slabs.lua")
|