095821a9e7
Biogas Tank is a dedicated storage for Biogas units. It comes in 3 sizes: Small (2 slots), Medium (32 slots) and Large (72 slots). It supports Tubelib stack pulling and status query (like HighPerf Chest). In addition, storage tank provides both visual indication and infotext information about current capacity usage. Signed-off-by: Michal Cieslakiewicz <michal.cieslakiewicz@wp.pl>
28 lines
851 B
Lua
28 lines
851 B
Lua
--[[
|
|
|
|
=======================================================================
|
|
Tubelib Biogas Machines Mod
|
|
by Micu (c) 2018
|
|
|
|
Copyright (C) 2018 Michal Cieslakiewicz
|
|
|
|
License: LGPLv2.1+
|
|
Media: CC BY-SA
|
|
=======================================================================
|
|
|
|
]]--
|
|
|
|
biogasmachines = {}
|
|
|
|
-- helper functions
|
|
dofile(minetest.get_modpath("biogasmachines").."/functions.lua")
|
|
|
|
-- machines
|
|
dofile(minetest.get_modpath("biogasmachines").."/freezer.lua")
|
|
dofile(minetest.get_modpath("biogasmachines").."/gasifier.lua")
|
|
dofile(minetest.get_modpath("biogasmachines").."/gasfurnace.lua")
|
|
dofile(minetest.get_modpath("biogasmachines").."/jetfurnace.lua")
|
|
dofile(minetest.get_modpath("biogasmachines").."/compactor.lua")
|
|
dofile(minetest.get_modpath("biogasmachines").."/torch.lua")
|
|
dofile(minetest.get_modpath("biogasmachines").."/tank.lua")
|