2017-08-17 00:16:29 +02:00
|
|
|
-- Load files
|
|
|
|
|
2021-04-06 20:08:20 +02:00
|
|
|
mcl_portals = {
|
|
|
|
storage = minetest.get_mod_storage(),
|
|
|
|
}
|
2017-09-19 15:45:23 +02:00
|
|
|
|
2017-08-17 00:16:29 +02:00
|
|
|
-- 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")
|
|
|
|
|
2021-04-06 20:08:20 +02:00
|
|
|
dofile(minetest.get_modpath("mcl_portals").."/portal_gateway.lua")
|
|
|
|
|