mirror of
https://github.com/joe7575/techpack.git
synced 2024-11-22 15:23:43 +01:00
36 lines
1.3 KiB
Lua
36 lines
1.3 KiB
Lua
--[[
|
|
|
|
Tubelib Addons 1
|
|
================
|
|
|
|
Copyright (C) 2017,2018 Joachim Stolberg
|
|
|
|
LGPLv2.1+
|
|
See LICENSE.txt for more information
|
|
|
|
History:
|
|
2017-09-08 v0.01 first version
|
|
2017-09-17 v0.02 harvester added
|
|
2017-10-02 v0.03 fermenter and reformer added
|
|
2017-10-07 v0.04 Ice, now and corals added to the Quarry
|
|
2017-10-24 v0.05 Harvester reworked and optimized
|
|
2017-10-29 v0.06 Adapted to Tubelib v0.07
|
|
2017-12-29 v0.07 Support for Farming Redo added
|
|
2018-01-01 v0.08 Harvester Copter removed
|
|
2018-01-04 v0.09 Funnel added
|
|
2018-01-28 v0.10 command 'fuel' added for Quarry and Harvester
|
|
|
|
]]--
|
|
|
|
if tubelib.version >= 0.07 then
|
|
dofile(minetest.get_modpath("tubelib_addons1") .. "/quarry.lua")
|
|
dofile(minetest.get_modpath("tubelib_addons1") .. "/grinder.lua")
|
|
dofile(minetest.get_modpath("tubelib_addons1") .. '/autocrafter.lua')
|
|
dofile(minetest.get_modpath("tubelib_addons1") .. '/harvester.lua')
|
|
dofile(minetest.get_modpath("tubelib_addons1") .. '/fermenter.lua')
|
|
dofile(minetest.get_modpath("tubelib_addons1") .. '/reformer.lua')
|
|
dofile(minetest.get_modpath("tubelib_addons1") .. '/funnel.lua')
|
|
dofile(minetest.get_modpath("tubelib_addons1") .. "/pusher_fast.lua")
|
|
else
|
|
print("[tubelib_addons1] Version 0.07+ of Tubelib Mod is required!")
|
|
end |