blob: 4797ac4b6fbac1666dfd997ebd3dfb5dd89fd2af (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
-- 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)
|