init.lua 486 B

1234567891011121314151617181920
  1. --[[
  2. Advanced Portals (advanced_portals), A minetest add-on that allows certain users to create and place portals on their minetest world.
  3. Copyright (c) 2020 Genshin <emperor_genshin@hotmail.com>
  4. License: GPLv3
  5. --]]
  6. local path = minetest.get_modpath("advanced_portals")
  7. -- Portal Handler
  8. dofile(path.."/handler.lua")
  9. -- Portal Node Registration
  10. dofile(path.."/registration.lua")
  11. -- Portal Nodes
  12. dofile(path.."/portals.lua")
  13. print("[ADDON]: Advanced Portals Loaded Successfully!")