init.lua 439 B

12345678910111213
  1. local modpath = minetest.get_modpath("other_worlds").. DIR_DELIM
  2. otherworlds = {}
  3. dofile(modpath .. "settings.lua")
  4. dofile(modpath .. "mars_plants.lua")
  5. dofile(modpath .. "crystals.lua")
  6. dofile(modpath .. "space_nodes.lua")
  7. dofile(modpath .. "crafting.lua")
  8. dofile(modpath .. "asteroid_layer_helpers.lua") -- required helpers for mapgen options below
  9. dofile(modpath .. "space_asteroids.lua")
  10. dofile(modpath .. "redsky_asteroids.lua")