1
0
mirror of https://github.com/moparisthebest/minetest synced 2025-01-10 05:08:07 -05:00
minetest/builtin/client/init.lua

12 lines
297 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
dofile(clientpath .. "register.lua")
dofile(clientpath .. "preview.lua")
core.register_on_death(function()
core.display_chat_message("You died.")
end)