mirror of
https://cheapiesystems.com/git/digistuff
synced 2024-11-19 21:53:47 +01:00
28 lines
734 B
Lua
28 lines
734 B
Lua
digistuff = {}
|
|
|
|
local components = {
|
|
"internal",
|
|
"conductors",
|
|
"touchscreen",
|
|
"light",
|
|
"noteblock",
|
|
"camera",
|
|
"switches",
|
|
"panel",
|
|
"piezo",
|
|
"detector",
|
|
"piston",
|
|
"timer",
|
|
}
|
|
for _,name in ipairs(components) do
|
|
dofile(string.format("%s%s%s.lua",minetest.get_modpath(minetest.get_current_modname()),DIR_DELIM,name))
|
|
end
|
|
|
|
local http = minetest.request_http_api()
|
|
if not http then
|
|
minetest.log("error","digistuff is not allowed to use the HTTP API - digilines NIC will not be available!")
|
|
minetest.log("error","If this functionality is desired, please add digistuff to your secure.http_mods setting")
|
|
else
|
|
loadfile(string.format("%s%s%s.lua",minetest.get_modpath(minetest.get_current_modname()),DIR_DELIM,"nic"))(http)
|
|
end
|