2017-01-21 06:02:08 -08:00
|
|
|
-- Minetest: builtin/client/init.lua
|
|
|
|
local scriptpath = core.get_builtin_path()..DIR_DELIM
|
|
|
|
local clientpath = scriptpath.."client"..DIR_DELIM
|
2017-01-22 00:05:09 -08:00
|
|
|
local commonpath = scriptpath.."common"..DIR_DELIM
|
2017-01-21 06:02:08 -08:00
|
|
|
|
|
|
|
dofile(clientpath .. "register.lua")
|
2017-01-22 02:17:41 -08:00
|
|
|
dofile(commonpath .. "after.lua")
|
|
|
|
dofile(commonpath .. "chatcommands.lua")
|
2017-01-21 15:20:55 -08:00
|
|
|
dofile(clientpath .. "preview.lua")
|
2017-01-21 06:02:08 -08:00
|
|
|
|
2017-01-21 15:20:55 -08:00
|
|
|
core.register_on_death(function()
|
|
|
|
core.display_chat_message("You died.")
|
2017-01-21 06:02:08 -08:00
|
|
|
end)
|