1
0
mirror of https://github.com/D00Med/scifi_nodes.git synced 2025-06-30 15:10:46 +02:00

Merge remote-tracking branch 'upstream/master'

This commit is contained in:
2023-11-25 15:35:19 +01:00
21 changed files with 562 additions and 354 deletions

View File

@ -21,6 +21,7 @@ if minetest.get_modpath("default") then
end
dofile(MP.."/plants.lua")
dofile(MP.."/models.lua")
dofile(MP.."/nodes.lua")
dofile(MP.."/doors.lua")
dofile(MP.."/switch.lua")
@ -28,7 +29,6 @@ dofile(MP.."/protected_switch.lua")
dofile(MP.."/nodeboxes.lua")
dofile(MP.."/palm_scanner.lua")
dofile(MP.."/digicode.lua")
dofile(MP.."/models.lua")
dofile(MP.."/octagon_panes.lua")
dofile(MP.."/forcefield.lua")
dofile(MP.."/crafts.lua")
@ -38,4 +38,9 @@ if minetest.get_modpath("letters") then
dofile(MP.."/letters.lua")
end
if minetest.get_modpath("mesecons_stealthnode") then
-- register stealthnodes
dofile(MP.."/stealthnodes.lua")
end
minetest.log("action", "[scifi_nodes] loaded.")