2019-03-09 11:49:50 +00:00
|
|
|
-- Multifurnace for Minetest 5.0.0+
|
|
|
|
-- Copyright (c) 2019 Evert "Diamond" Prants <evert@lunasqu.ee>
|
|
|
|
|
|
|
|
multifurnace = rawget(_G, "multifurnace") or {}
|
|
|
|
|
|
|
|
local modpath = minetest.get_modpath(minetest.get_current_modname())
|
|
|
|
multifurnace.modpath = modpath
|
|
|
|
|
2019-03-25 17:31:12 +00:00
|
|
|
dofile(modpath .. "/multi.lua")
|
|
|
|
|
|
|
|
dofile(modpath .. "/faucet.lua")
|
2019-03-27 09:45:20 +00:00
|
|
|
dofile(modpath .. "/casting_table.lua")
|
2019-03-09 11:49:50 +00:00
|
|
|
dofile(modpath .. "/furnace.lua")
|
|
|
|
dofile(modpath .. "/nodes.lua")
|
|
|
|
dofile(modpath .. "/crafting.lua")
|