2018-10-03 21:49:04 +02:00
|
|
|
--[[
|
|
|
|
|
2018-11-06 20:45:02 +01:00
|
|
|
=======================================================================
|
|
|
|
Tubelib Biogas Machines Mod
|
|
|
|
by Micu (c) 2018
|
2018-10-03 21:49:04 +02:00
|
|
|
|
2018-11-06 20:45:02 +01:00
|
|
|
Copyright (C) 2018 Michal Cieslakiewicz
|
2018-10-03 21:49:04 +02:00
|
|
|
|
2018-11-06 20:45:02 +01:00
|
|
|
License: LGPLv2.1+
|
|
|
|
Media: CC BY-SA
|
|
|
|
=======================================================================
|
|
|
|
|
|
|
|
]]--
|
2018-10-03 21:49:04 +02:00
|
|
|
|
2018-11-06 20:45:02 +01:00
|
|
|
biogasmachines = {}
|
2018-10-03 21:49:04 +02:00
|
|
|
|
2018-11-06 20:45:02 +01:00
|
|
|
-- helper functions
|
2018-11-07 15:46:21 +01:00
|
|
|
dofile(minetest.get_modpath("biogasmachines").."/functions.lua")
|
2018-10-03 21:49:04 +02:00
|
|
|
|
2018-11-06 20:45:02 +01:00
|
|
|
-- machines
|
|
|
|
dofile(minetest.get_modpath("biogasmachines").."/freezer.lua")
|
2018-10-03 21:49:04 +02:00
|
|
|
dofile(minetest.get_modpath("biogasmachines").."/gasifier.lua")
|
2018-11-24 12:57:41 +01:00
|
|
|
dofile(minetest.get_modpath("biogasmachines").."/gasfurnace.lua")
|
2018-12-03 15:35:44 +01:00
|
|
|
dofile(minetest.get_modpath("biogasmachines").."/jetfurnace.lua")
|
2018-12-14 21:26:29 +01:00
|
|
|
dofile(minetest.get_modpath("biogasmachines").."/compactor.lua")
|
2019-02-19 13:12:23 +01:00
|
|
|
dofile(minetest.get_modpath("biogasmachines").."/torch.lua")
|
2019-02-22 18:24:38 +01:00
|
|
|
dofile(minetest.get_modpath("biogasmachines").."/tank.lua")
|