39 lines
1.4 KiB
Lua
39 lines
1.4 KiB
Lua
--[[
|
|
|
|
Tubelib Addons 2
|
|
================
|
|
|
|
Copyright (C) 2017-2020 Joachim Stolberg
|
|
|
|
AGPL v3
|
|
See LICENSE.txt for more information
|
|
|
|
]]--
|
|
|
|
tubelib_addons2 = {}
|
|
|
|
|
|
-- Load support for I18n
|
|
tubelib_addons2.S = minetest.get_translator("tubelib_addons2")
|
|
|
|
dofile(minetest.get_modpath("tubelib_addons2") .. "/timer.lua")
|
|
dofile(minetest.get_modpath("tubelib_addons2") .. "/sequencer.lua")
|
|
dofile(minetest.get_modpath("tubelib_addons2") .. "/gateblock.lua")
|
|
dofile(minetest.get_modpath("tubelib_addons2") .. "/doorblock.lua")
|
|
dofile(minetest.get_modpath("tubelib_addons2") .. "/repeater.lua")
|
|
dofile(minetest.get_modpath("tubelib_addons2") .. "/logic_not.lua")
|
|
dofile(minetest.get_modpath("tubelib_addons2") .. "/programmer.lua")
|
|
dofile(minetest.get_modpath("tubelib_addons2") .. "/accesscontrol.lua")
|
|
dofile(minetest.get_modpath("tubelib_addons2") .. "/streetlamp.lua")
|
|
dofile(minetest.get_modpath("tubelib_addons2") .. "/ceilinglamp.lua")
|
|
dofile(minetest.get_modpath("tubelib_addons2") .. "/invisiblelamp.lua")
|
|
dofile(minetest.get_modpath("tubelib_addons2") .. "/industriallamp.lua")
|
|
|
|
if minetest.get_modpath("mesecons") and mesecon then
|
|
dofile(minetest.get_modpath("tubelib_addons2") .. "/mesecons_converter.lua")
|
|
end
|
|
if minetest.get_modpath("unifieddyes") and unifieddyes then
|
|
dofile(minetest.get_modpath("tubelib_addons2") .. "/colorlamp_ud.lua")
|
|
else
|
|
dofile(minetest.get_modpath("tubelib_addons2") .. "/colorlamp.lua")
|
|
end
|