mirror of
https://github.com/minetest/minetest.git
synced 2024-11-05 07:13:46 +01:00
8f085e02a1
Add backwards-compatible metatable functions for vectors.
11 lines
379 B
Lua
11 lines
379 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(clientpath .. "chatcommands.lua")
|
|
dofile(clientpath .. "death_formspec.lua")
|