BlockCraft/builtin/builtin.lua

38 lines
1.0 KiB
Lua
Raw Permalink Normal View History

--
-- 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 02:37:41 -07:00
-- Initialize some very basic things
2012-03-11 06:41:53 -07:00
print = minetest.debug
math.randomseed(os.time())
2013-02-18 01:58:55 -08:00
os.setlocale("C", "numeric")
2013-08-25 03:54:16 -07:00
local errorfct = error
error = function(text)
print(debug.traceback(""))
errorfct(text)
end
2012-04-01 02:37:41 -07:00
-- Load other files
2013-07-06 22:44:33 -07: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")
2014-01-11 08:54:00 -08:00
dofile(modpath.."/forceloading.lua")