2014-04-27 23:55:49 +02:00
|
|
|
|
2017-06-30 20:14:39 +02:00
|
|
|
local scriptpath = core.get_builtin_path()
|
2014-04-27 23:55:49 +02:00
|
|
|
local commonpath = scriptpath.."common"..DIR_DELIM
|
|
|
|
local gamepath = scriptpath.."game"..DIR_DELIM
|
|
|
|
|
2016-11-16 10:17:46 +01:00
|
|
|
-- Shared between builtin files, but
|
|
|
|
-- not exposed to outer context
|
|
|
|
local builtin_shared = {}
|
|
|
|
|
2014-04-27 23:55:49 +02:00
|
|
|
dofile(commonpath.."vector.lua")
|
|
|
|
|
2015-10-30 07:48:37 +01:00
|
|
|
dofile(gamepath.."constants.lua")
|
2016-11-16 10:17:46 +01:00
|
|
|
assert(loadfile(gamepath.."item.lua"))(builtin_shared)
|
2014-04-27 23:55:49 +02:00
|
|
|
dofile(gamepath.."register.lua")
|
2014-08-12 23:07:27 +02:00
|
|
|
|
2014-12-12 20:49:19 +01:00
|
|
|
if core.settings:get_bool("profiler.load") then
|
2016-07-12 21:51:10 +02:00
|
|
|
profiler = dofile(scriptpath.."profiler"..DIR_DELIM.."init.lua")
|
2014-08-12 23:07:27 +02:00
|
|
|
end
|
|
|
|
|
2017-01-22 11:17:41 +01:00
|
|
|
dofile(commonpath .. "after.lua")
|
2014-04-27 23:55:49 +02:00
|
|
|
dofile(gamepath.."item_entity.lua")
|
|
|
|
dofile(gamepath.."deprecated.lua")
|
|
|
|
dofile(gamepath.."misc.lua")
|
|
|
|
dofile(gamepath.."privileges.lua")
|
|
|
|
dofile(gamepath.."auth.lua")
|
2017-01-22 09:05:09 +01:00
|
|
|
dofile(commonpath .. "chatcommands.lua")
|
2014-04-27 23:55:49 +02:00
|
|
|
dofile(gamepath.."chatcommands.lua")
|
|
|
|
dofile(gamepath.."static_spawn.lua")
|
|
|
|
dofile(gamepath.."detached_inventory.lua")
|
2016-11-16 10:17:46 +01:00
|
|
|
assert(loadfile(gamepath.."falling.lua"))(builtin_shared)
|
2014-04-27 23:55:49 +02:00
|
|
|
dofile(gamepath.."features.lua")
|
|
|
|
dofile(gamepath.."voxelarea.lua")
|
|
|
|
dofile(gamepath.."forceloading.lua")
|
|
|
|
dofile(gamepath.."statbars.lua")
|
2016-07-12 21:51:10 +02:00
|
|
|
|
|
|
|
profiler = nil
|