mirror of
https://git.minetest.land/VoxeLibre/VoxeLibre.git
synced 2024-11-29 05:51:05 +01:00
b582afeb1f
This updates the VoxeLibre documentation by replacing "Minetest" with "Luanti" and updating links. Done: * Update "Minetest" in documentation and comments to "Luanti" * Update links to forums, ContentDB and Luanti project web page Reviewed-on: https://git.minetest.land/VoxeLibre/VoxeLibre/pulls/4706 Reviewed-by: the-real-herowl <the-real-herowl@noreply.git.minetest.land> Co-authored-by: teknomunk <teknomunk@protonmail.com> Co-committed-by: teknomunk <teknomunk@protonmail.com>
16 lines
389 B
Lua
16 lines
389 B
Lua
-- Luanti 0.4 mod: mcl_stairs
|
|
-- See README.txt for licensing and other information.
|
|
|
|
-- Global namespace for functions
|
|
|
|
mcl_stairs = {}
|
|
|
|
-- Load other files
|
|
|
|
local modpath = minetest.get_modpath(minetest.get_current_modname())
|
|
|
|
dofile(modpath.."/api.lua")
|
|
dofile(modpath.."/cornerstair.lua")
|
|
dofile(modpath.."/register.lua")
|
|
dofile(modpath.."/crafting.lua")
|
|
dofile(modpath.."/alias.lua")
|