VoxeLibre/mods/ITEMS/mcl_stairs/init.lua
teknomunk b582afeb1f Update documentation for Minetest rename to Luanti (#4706)
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>
2024-11-28 20:55:48 +01:00

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")