Mods hinzugefügt und geändert. Höhlen, Himmelsinseln und Asteroiden.
This commit is contained in:
parent
df3b4e6104
commit
ef2b11dbee
62 changed files with 5344 additions and 121 deletions
26
mods/other_worlds/init.lua
Normal file
26
mods/other_worlds/init.lua
Normal file
|
@ -0,0 +1,26 @@
|
|||
|
||||
-- global, mod path and load mod sections
|
||||
|
||||
otherworlds = {}
|
||||
|
||||
local modpath = core.get_modpath("other_worlds") .. "/"
|
||||
|
||||
dofile(modpath .. "settings.lua")
|
||||
dofile(modpath .. "nodes.lua")
|
||||
dofile(modpath .. "crafting.lua")
|
||||
dofile(modpath .. "skybox.lua")
|
||||
|
||||
-- required helpers for mapgen options below
|
||||
|
||||
dofile(modpath .. "asteroid_layer_helpers.lua")
|
||||
|
||||
if otherworlds.settings.space_asteroids.enable then
|
||||
dofile(modpath .. "space_asteroids.lua")
|
||||
end
|
||||
|
||||
if otherworlds.settings.redsky_asteroids.enable then
|
||||
dofile(modpath .. "redsky_asteroids.lua")
|
||||
end
|
||||
|
||||
|
||||
print("[MOD] Other Worlds loaded")
|
Loading…
Add table
Add a link
Reference in a new issue