forked from Wuzzy/realtest_mt5
19 lines
701 B
Lua
19 lines
701 B
Lua
realtest = {}
|
|
|
|
dofile(minetest.get_modpath("core").."/default_config.lua")
|
|
local user_conf = minetest.get_modpath("core").."/config.lua"
|
|
local f = io.open(user_conf)
|
|
if f then
|
|
dofile(user_conf)
|
|
f:close()
|
|
end
|
|
dofile(minetest.get_modpath("core").."/helper_functions.lua")
|
|
dofile(minetest.get_modpath("core").."/creative.lua")
|
|
dofile(minetest.get_modpath("core").."/drop.lua")
|
|
--dofile(minetest.get_modpath("core").."/place.lua")
|
|
dofile(minetest.get_modpath("core").."/falling.lua")
|
|
dofile(minetest.get_modpath("core").."/seasons.lua")
|
|
dofile(minetest.get_modpath("core").."/player.lua")
|
|
dofile(minetest.get_modpath("core").."/stairs_and_slabs.lua")
|
|
dofile(minetest.get_modpath("core").."/legacy.lua")
|