minetest-mm/mods/techpack/tubelib_addons3/init.lua

28 lines
774 B
Lua
Raw Normal View History

2020-11-15 20:25:38 +01:00
--[[
Tubelib Addons 3
================
2020-11-20 19:20:28 +01:00
Copyright (C) 2017-2020 Joachim Stolberg
2020-11-15 20:25:38 +01:00
2020-11-20 19:20:28 +01:00
AGPL v3
2020-11-15 20:25:38 +01:00
See LICENSE.txt for more information
]]--
2020-11-20 19:20:28 +01:00
tubelib_addons3 = {}
-- Load support for I18n
tubelib_addons3.S = minetest.get_translator("tubelib_addons3")
2020-11-15 20:25:38 +01:00
dofile(minetest.get_modpath("tubelib_addons3") .. '/chest.lua')
dofile(minetest.get_modpath("tubelib_addons3") .. '/pusher.lua')
dofile(minetest.get_modpath("tubelib_addons3") .. '/distributor.lua')
dofile(minetest.get_modpath("tubelib_addons3") .. '/pushing_chest.lua')
dofile(minetest.get_modpath("tubelib_addons3") .. '/teleporter.lua')
dofile(minetest.get_modpath("tubelib_addons3") .. '/funnel.lua')
2021-06-12 20:20:04 +02:00
if minetest.global_exists("minecart") then
dofile(minetest.get_modpath("tubelib_addons3") .. '/chest_cart.lua')
end