25 lines
1.0 KiB
Lua
25 lines
1.0 KiB
Lua
illuna = {}
|
|
|
|
dofile(minetest.get_modpath("illuna").."/nodes.lua")
|
|
dofile(minetest.get_modpath("illuna").."/entities.lua")
|
|
dofile(minetest.get_modpath("illuna").."/moreblocks.lua")
|
|
dofile(minetest.get_modpath("illuna").."/crafting.lua")
|
|
dofile(minetest.get_modpath("illuna").."/commands.lua")
|
|
dofile(minetest.get_modpath("illuna").."/register.lua")
|
|
dofile(minetest.get_modpath("illuna").."/aliases.lua")
|
|
dofile(minetest.get_modpath("illuna").."/craftitems.lua")
|
|
--dofile(minetest.get_modpath("illuna").."/shop.lua")
|
|
dofile(minetest.get_modpath("illuna").."/stairs.lua")
|
|
dofile(minetest.get_modpath("illuna").."/hotstone.lua")
|
|
dofile(minetest.get_modpath("illuna").."/replacer.lua")
|
|
dofile(minetest.get_modpath("illuna").."/pkarcs.lua")
|
|
if not minetest.get_modpath("ethereal") then
|
|
dofile(minetest.get_modpath("illuna").."/water.lua")
|
|
end
|
|
if minetest.get_modpath("technic") then
|
|
dofile(minetest.get_modpath("illuna").."/technic.lua")
|
|
end
|
|
if minetest.get_modpath("unified_inventory") then
|
|
dofile(minetest.get_modpath("illuna").."/unified_inventory.lua")
|
|
end
|