2016-08-25 15:13:32 +02:00
|
|
|
illuna = {}
|
|
|
|
|
2016-03-15 22:36:23 +01:00
|
|
|
dofile(minetest.get_modpath("illuna").."/nodes.lua")
|
2018-12-28 18:21:07 +01:00
|
|
|
dofile(minetest.get_modpath("illuna").."/entities.lua")
|
2017-09-18 18:48:47 +02:00
|
|
|
dofile(minetest.get_modpath("illuna").."/moreblocks.lua")
|
2016-03-15 22:36:23 +01:00
|
|
|
dofile(minetest.get_modpath("illuna").."/crafting.lua")
|
2016-06-05 18:55:27 +02:00
|
|
|
dofile(minetest.get_modpath("illuna").."/commands.lua")
|
2016-06-10 20:01:40 +02:00
|
|
|
dofile(minetest.get_modpath("illuna").."/register.lua")
|
2016-08-02 18:15:52 +02:00
|
|
|
dofile(minetest.get_modpath("illuna").."/aliases.lua")
|
2016-10-03 13:32:13 +02:00
|
|
|
dofile(minetest.get_modpath("illuna").."/craftitems.lua")
|
2018-08-04 16:30:51 +02:00
|
|
|
--dofile(minetest.get_modpath("illuna").."/shop.lua")
|
2017-01-11 22:17:47 +01:00
|
|
|
dofile(minetest.get_modpath("illuna").."/stairs.lua")
|
2017-05-26 20:15:55 +02:00
|
|
|
dofile(minetest.get_modpath("illuna").."/hotstone.lua")
|
2017-08-06 12:28:19 +02:00
|
|
|
dofile(minetest.get_modpath("illuna").."/replacer.lua")
|
2017-10-09 22:30:48 +02:00
|
|
|
dofile(minetest.get_modpath("illuna").."/pkarcs.lua")
|
2016-12-02 16:51:40 +01:00
|
|
|
if not minetest.get_modpath("ethereal") then
|
2017-01-11 22:17:47 +01:00
|
|
|
dofile(minetest.get_modpath("illuna").."/water.lua")
|
2016-12-02 16:51:40 +01:00
|
|
|
end
|
2017-06-29 13:03:17 +02:00
|
|
|
if minetest.get_modpath("technic") then
|
|
|
|
dofile(minetest.get_modpath("illuna").."/technic.lua")
|
|
|
|
end
|
2018-08-04 16:27:07 +02:00
|
|
|
if minetest.get_modpath("unified_inventory") then
|
|
|
|
dofile(minetest.get_modpath("illuna").."/unified_inventory.lua")
|
|
|
|
end
|