celevator-cd2025/init.lua
cheapie ca33ea9d98 Some work on the final (entity) drive
Just moves the one node at -726,9,77 for now and you can't ride it yet, but it does properly move and communicate with the controller.
2023-08-08 19:35:57 -05:00

15 lines
259 B
Lua

local components = {
"framework",
"car",
"drive_null",
"drive_entity",
"controller",
"callbuttons",
"pairingtool",
"pilantern",
}
for _,v in ipairs(components) do
dofile(string.format("%s%s%s.lua",minetest.get_modpath("celevator"),DIR_DELIM,v))
end