2017-01-21 15:02:08 +01:00
|
|
|
-- Minetest: builtin/client/init.lua
|
2017-06-30 20:14:39 +02:00
|
|
|
local scriptpath = core.get_builtin_path()
|
2017-01-21 15:02:08 +01:00
|
|
|
local clientpath = scriptpath.."client"..DIR_DELIM
|
2017-01-22 09:05:09 +01: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")
|
2022-07-23 22:27:07 +02:00
|
|
|
dofile(commonpath .. "mod_storage.lua")
|
2017-01-22 11:17:41 +01:00
|
|
|
dofile(commonpath .. "chatcommands.lua")
|
2024-02-02 22:12:59 +01:00
|
|
|
dofile(commonpath .. "information_formspecs.lua")
|
2017-01-24 17:26:15 +01:00
|
|
|
dofile(clientpath .. "chatcommands.lua")
|
2018-11-24 11:41:11 +01:00
|
|
|
dofile(clientpath .. "death_formspec.lua")
|
2022-08-02 11:58:08 +02:00
|
|
|
dofile(clientpath .. "misc.lua")
|
2022-10-19 00:01:44 +02:00
|
|
|
assert(loadfile(commonpath .. "item_s.lua"))({}) -- Just for push/read node functions
|