3e9996a6e2
Jet Furnace that is 2 times faster than standard version in both item cooking time and Biogas consumption. Additionally it supports stack pulling from output tray (can be paired with High Perf Pusher) and longer auto-poweroff delay (to allow fuel to reach device before it automatically shuts down). Signed-off-by: Michal Cieslakiewicz <michal.cieslakiewicz@wp.pl>
26 lines
735 B
Lua
26 lines
735 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").."/htcompressor.lua")
|