forked from VoxeLibre/VoxeLibre
17 lines
423 B
Lua
17 lines
423 B
Lua
-- Load files
|
|
|
|
mcl_portals = {
|
|
storage = minetest.get_mod_storage(),
|
|
}
|
|
|
|
-- Nether portal:
|
|
-- Obsidian frame, activated by flint and steel
|
|
dofile(minetest.get_modpath("mcl_portals").."/portal_nether.lua")
|
|
|
|
-- End portal (W.I.P):
|
|
-- Red nether brick block frame, activated by an eye of ender
|
|
dofile(minetest.get_modpath("mcl_portals").."/portal_end.lua")
|
|
|
|
dofile(minetest.get_modpath("mcl_portals").."/portal_gateway.lua")
|
|
|