mirror of
https://github.com/dragonfireclient/dragonfireclient.git
synced 2025-01-08 23:29:52 -05:00
13 lines
440 B
Lua
13 lines
440 B
Lua
-- Minetest: builtin/client/init.lua
|
|
local scriptpath = core.get_builtin_path()
|
|
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(commonpath .. "vector.lua")
|
|
dofile(clientpath .. "util.lua")
|
|
dofile(clientpath .. "chatcommands.lua")
|
|
dofile(clientpath .. "cheats.lua")
|
|
|