f289fba0ae
Biogas Furnace is Tubelib-compatible version of standard furnace that uses Biogas as fuel. All default furnace cooking recipes apply. See gasfurnace.lua for details and differences. Signed-off-by: Michal Cieslakiewicz <michal.cieslakiewicz@wp.pl>
25 lines
669 B
Lua
25 lines
669 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").."/htcompressor.lua")
|