]> git.lizzy.rs Git - minetest.git/blobdiff - builtin/builtin.lua
Drop nodes as items when dugged and no room in inventory and dont remove dropped...
[minetest.git] / builtin / builtin.lua
index 10acd0f521ef3c5762a3ea028eca774386d5f788..bf33cbe6bbd5555900a6e568e0a934a975891a4d 100644 (file)
@@ -8,8 +8,10 @@
 -- Initialize some very basic things
 print = minetest.debug
 math.randomseed(os.time())
+os.setlocale("C", "numeric")
 
 -- Load other files
+dofile(minetest.get_modpath("__builtin").."/serialize.lua")
 dofile(minetest.get_modpath("__builtin").."/misc_helpers.lua")
 dofile(minetest.get_modpath("__builtin").."/item.lua")
 dofile(minetest.get_modpath("__builtin").."/misc_register.lua")
@@ -19,4 +21,7 @@ dofile(minetest.get_modpath("__builtin").."/misc.lua")
 dofile(minetest.get_modpath("__builtin").."/privileges.lua")
 dofile(minetest.get_modpath("__builtin").."/auth.lua")
 dofile(minetest.get_modpath("__builtin").."/chatcommands.lua")
+dofile(minetest.get_modpath("__builtin").."/static_spawn.lua")
+dofile(minetest.get_modpath("__builtin").."/detached_inventory.lua")
+dofile(minetest.get_modpath("__builtin").."/falling.lua")