scifi_nodes/init.lua

34 lines
722 B
Lua
Raw Permalink Normal View History

2019-09-05 00:00:39 -07:00
--scifi_nodes by D00Med
scifi_nodes = {}
2019-09-04 23:44:32 -07:00
local MP = minetest.get_modpath("scifi_nodes")
2016-07-10 21:26:57 -07:00
dofile(MP.."/sounds.lua")
2019-09-04 23:44:32 -07:00
if minetest.get_modpath("xpanes") then
dofile(MP.."/panes.lua")
2016-07-10 21:26:57 -07:00
end
dofile(MP.."/common.lua")
if minetest.get_modpath("default") then
-- only load builder and chest if the default mod is available
-- the formspecs depend on it
dofile(MP.."/builder.lua")
dofile(MP.."/chest.lua")
end
2019-09-04 23:44:32 -07:00
dofile(MP.."/plants.lua")
dofile(MP.."/nodes.lua")
dofile(MP.."/doors.lua")
2020-05-11 01:18:13 -07:00
dofile(MP.."/switch.lua")
2020-05-11 01:25:12 -07:00
dofile(MP.."/protected_switch.lua")
2019-09-04 23:44:32 -07:00
dofile(MP.."/nodeboxes.lua")
dofile(MP.."/palm_scanner.lua")
dofile(MP.."/digicode.lua")
2019-09-04 23:44:32 -07:00
dofile(MP.."/models.lua")
dofile(MP.."/octagon_panes.lua")
dofile(MP.."/crafts.lua")