2014-04-27 23:55:49 +02:00
|
|
|
|
2015-11-10 12:49:24 +01:00
|
|
|
local scriptpath = core.get_builtin_path()..DIR_DELIM
|
2014-04-27 23:55:49 +02:00
|
|
|
local commonpath = scriptpath.."common"..DIR_DELIM
|
|
|
|
local gamepath = scriptpath.."game"..DIR_DELIM
|
|
|
|
|
|
|
|
dofile(commonpath.."vector.lua")
|
|
|
|
|
2015-11-10 19:29:00 +01:00
|
|
|
dofile(gamepath.."constants.lua")
|
2014-04-27 23:55:49 +02:00
|
|
|
dofile(gamepath.."item.lua")
|
|
|
|
dofile(gamepath.."register.lua")
|
2014-08-12 23:07:27 +02:00
|
|
|
|
2015-11-01 09:01:13 +01:00
|
|
|
if core.setting_getbool("mod_profiling") then
|
2014-08-12 23:07:27 +02:00
|
|
|
dofile(gamepath.."mod_profiling.lua")
|
|
|
|
end
|
|
|
|
|
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")
|
|
|
|
dofile(gamepath.."chatcommands.lua")
|
|
|
|
dofile(gamepath.."static_spawn.lua")
|
|
|
|
dofile(gamepath.."detached_inventory.lua")
|
|
|
|
dofile(gamepath.."falling.lua")
|
|
|
|
dofile(gamepath.."features.lua")
|
|
|
|
dofile(gamepath.."voxelarea.lua")
|
|
|
|
dofile(gamepath.."forceloading.lua")
|
2016-03-28 19:08:34 +02:00
|
|
|
--dofile(gamepath.."statbars.lua")
|