2019-03-09 12:49:50 +01: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 18:31:12 +01:00
|
|
|
dofile(modpath .. "/multi.lua")
|
|
|
|
|
|
|
|
dofile(modpath .. "/faucet.lua")
|
2019-03-27 10:45:20 +01:00
|
|
|
dofile(modpath .. "/casting_table.lua")
|
2019-03-09 12:49:50 +01:00
|
|
|
dofile(modpath .. "/furnace.lua")
|
|
|
|
dofile(modpath .. "/nodes.lua")
|
|
|
|
dofile(modpath .. "/crafting.lua")
|