2017-01-21 15:02:08 +01:00
|
|
|
-- Minetest: builtin/client/init.lua
|
2017-06-30 19:14:39 +01:00
|
|
|
local scriptpath = core.get_builtin_path()
|
2017-01-21 15:02:08 +01:00
|
|
|
local clientpath = scriptpath.."client"..DIR_DELIM
|
2017-01-22 08:05:09 +00:00
|
|
|
local commonpath = scriptpath.."common"..DIR_DELIM
|
2017-01-21 15:02:08 +01:00
|
|
|
|
|
|
|
dofile(clientpath .. "register.lua")
|
2017-01-22 11:17:41 +01:00
|
|
|
dofile(commonpath .. "after.lua")
|
|
|
|
dofile(commonpath .. "chatcommands.lua")
|
2017-01-24 16:26:15 +00:00
|
|
|
dofile(clientpath .. "chatcommands.lua")
|
2017-04-06 07:57:49 +02:00
|
|
|
dofile(commonpath .. "vector.lua")
|
2018-11-24 10:41:11 +00:00
|
|
|
dofile(clientpath .. "death_formspec.lua")
|
2020-07-30 19:48:54 +12:00
|
|
|
dofile(clientpath .. "sscsm.lua")
|
2022-08-02 11:58:08 +02:00
|
|
|
dofile(clientpath .. "misc.lua")
|