1
0
mirror of https://github.com/minetest/minetest.git synced 2024-11-15 23:10:28 +01:00
minetest/builtin/client/init.lua

13 lines
348 B
Lua
Raw Normal View History

-- Minetest: builtin/client/init.lua
local scriptpath = core.get_builtin_path()..DIR_DELIM
local clientpath = scriptpath.."client"..DIR_DELIM
local commonpath = scriptpath.."common"..DIR_DELIM
dofile(clientpath .. "register.lua")
dofile(clientpath .. "preview.lua")
core.register_on_death(function()
core.display_chat_message("You died.")
end)