techage_modpack/tubelib2/init.lua

15 lines
386 B
Lua
Raw Normal View History

2020-05-31 23:31:18 +03:00
tubelib2 = {}
local MP = minetest.get_modpath("tubelib2")
-- Load support for intllib.
dofile(MP .. "/intllib.lua")
dofile(MP .. "/internal2.lua")
dofile(MP .. "/internal1.lua")
dofile(MP .. "/tube_api.lua")
dofile(MP .. "/storage.lua")
-- Only for testing/demo purposes
2022-01-03 13:59:31 +03:00
if minetest.settings:get_bool("tubelib2_testingblocks_enabled") == true then
dofile(MP .. "/tube_test.lua")
end