2011-11-30 16:52:02 -05:00
|
|
|
--
|
|
|
|
-- This file contains built-in stuff in Minetest implemented in Lua.
|
|
|
|
--
|
|
|
|
-- It is always loaded and executed after registration of the C API,
|
|
|
|
-- before loading and running any mods.
|
|
|
|
--
|
|
|
|
|
2012-04-01 05:37:41 -04:00
|
|
|
-- Initialize some very basic things
|
2012-03-11 09:41:53 -04:00
|
|
|
print = minetest.debug
|
2012-01-20 18:11:44 -05:00
|
|
|
math.randomseed(os.time())
|
2013-02-18 04:58:55 -05:00
|
|
|
os.setlocale("C", "numeric")
|
2012-01-20 18:11:44 -05:00
|
|
|
|
2013-08-25 06:54:16 -04:00
|
|
|
local errorfct = error
|
|
|
|
error = function(text)
|
|
|
|
print(debug.traceback(""))
|
|
|
|
errorfct(text)
|
|
|
|
end
|
|
|
|
|
2012-04-01 05:37:41 -04:00
|
|
|
-- Load other files
|
2013-07-07 01:44:33 -04:00
|
|
|
local modpath = minetest.get_modpath("__builtin")
|
|
|
|
dofile(modpath.."/serialize.lua")
|
|
|
|
dofile(modpath.."/misc_helpers.lua")
|
|
|
|
dofile(modpath.."/item.lua")
|
|
|
|
dofile(modpath.."/misc_register.lua")
|
|
|
|
dofile(modpath.."/item_entity.lua")
|
|
|
|
dofile(modpath.."/deprecated.lua")
|
|
|
|
dofile(modpath.."/misc.lua")
|
|
|
|
dofile(modpath.."/privileges.lua")
|
|
|
|
dofile(modpath.."/auth.lua")
|
|
|
|
dofile(modpath.."/chatcommands.lua")
|
|
|
|
dofile(modpath.."/static_spawn.lua")
|
|
|
|
dofile(modpath.."/detached_inventory.lua")
|
|
|
|
dofile(modpath.."/falling.lua")
|
|
|
|
dofile(modpath.."/features.lua")
|
|
|
|
dofile(modpath.."/voxelarea.lua")
|
|
|
|
dofile(modpath.."/vector.lua")
|