]> git.lizzy.rs Git - minetest.git/blob - builtin/client/init.lua
[CSM] Add client-sided chat commands (#5092)
[minetest.git] / builtin / client / init.lua
1 -- Minetest: builtin/client/init.lua
2 local scriptpath = core.get_builtin_path()..DIR_DELIM
3 local clientpath = scriptpath.."client"..DIR_DELIM
4 local commonpath = scriptpath.."common"..DIR_DELIM
5
6 dofile(clientpath .. "register.lua")
7 dofile(clientpath .. "preview.lua")
8
9 core.register_on_death(function()
10         core.display_chat_message("You died.")
11 end)
12