summaryrefslogtreecommitdiff
path: root/builtin/client/init.lua
blob: dd218aab66b9f40991edba96d212e43a71de6443 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
-- 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(commonpath .. "after.lua")
dofile(commonpath .. "chatcommands.lua")
dofile(clientpath .. "preview.lua")

core.register_on_death(function()
	core.display_chat_message("You died.")
end)