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