mirror of
https://github.com/D00Med/scifi_nodes.git
synced 2024-11-13 05:40:28 +01:00
24 lines
518 B
Lua
24 lines
518 B
Lua
--scifi_nodes by D00Med
|
|
|
|
scifi_nodes = {}
|
|
|
|
local MP = minetest.get_modpath("scifi_nodes")
|
|
|
|
if minetest.get_modpath("xpanes") then
|
|
dofile(MP.."/panes.lua")
|
|
end
|
|
|
|
dofile(MP.."/common.lua")
|
|
dofile(MP.."/builder.lua")
|
|
dofile(MP.."/chest.lua")
|
|
dofile(MP.."/plants.lua")
|
|
dofile(MP.."/nodes.lua")
|
|
dofile(MP.."/doors.lua")
|
|
dofile(MP.."/switch.lua")
|
|
dofile(MP.."/protected_switch.lua")
|
|
dofile(MP.."/nodeboxes.lua")
|
|
dofile(MP.."/palm_scanner.lua")
|
|
dofile(MP.."/digicode.lua")
|
|
dofile(MP.."/models.lua")
|
|
dofile(MP.."/crafts.lua")
|