Michal Cieslakiewicz f289fba0ae biogasmachines: gas furnace added.
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>
2018-11-24 12:57:41 +01:00

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")