VanessaE 11adf56b75 update ambience, cottages, bakedclay, cooltrees, basic_materials, bees,
blox, bonemeal, homedecor, cblocks, currency, digilines, digistuff,
farming_redo, gloopblocks, jumping, mesecons, moreblocks, pipeworks,
quartz, signs_lib, technic, unified_inventory, unifieddyes, and
worldedit
2021-02-19 09:38:37 -05:00

38 lines
933 B
Lua

digistuff = {}
local components = {
"internal",
"conductors",
"touchscreen",
"light",
"noteblock",
"camera",
"switches",
"panel",
"piezo",
"detector",
"piston",
"timer",
"cardreader",
"channelcopier",
"controller",
"memory",
"gpu",
"sillystuff",
"movestone",
}
if minetest.get_modpath("mesecons_luacontroller") then table.insert(components,"ioexpander") end
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("warning","digistuff is not allowed to use the HTTP API - digilines NIC will not be available!")
minetest.log("warning","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