techage_modpack_ru_upd/tubelib2/init.lua
2022-07-11 20:24:44 +02:00

15 lines
403 B
Lua

tubelib2 = {}
-- Load support for I18n.
tubelib2.S = minetest.get_translator("tubelib2")
local MP = minetest.get_modpath("tubelib2")
dofile(MP .. "/internal2.lua")
dofile(MP .. "/internal1.lua")
dofile(MP .. "/tube_api.lua")
dofile(MP .. "/storage.lua")
-- Only for testing/demo purposes
if minetest.settings:get_bool("tubelib2_testingblocks_enabled") == true then
dofile(MP .. "/tube_test.lua")
end