Jump to content

Two Overworlds(no caves)


Recommended Posts

Hey, im running a dedicated server from citadel servers and I can't seem to get a proper caves shard. It seems to spawn me in another overworld with sometimes spawning giant tentacles. I have contacted citadel and they noted that my servers are properly set up but its not. What would cause this second overworld? I think it may be my worldgenoverride.lua but im not sure. I'll attach it. Any help would be great thanks.

worldgenoverride.lua

Link to comment
Share on other sites

override_enabled = true,
preset = "DST_CAVE", -- "SURVIVAL_TOGETHER", "MOD_MISSING", "SURVIVAL_TOGETHER_CLASSIC", "SURVIVAL_DEFAULT_PLUS", "COMPLETE_DARKNESS", "DST_CAVE", "DST_CAVE_PLUS"
overrides = {
-- MISC
task_set = "default", -- "classic", "default", "cave_default"
start_location = "default", -- "caves", "default", "plus", "darkness"

The caves preset "DST_CAVE" sets task_set to "cave_default".

But when you set task_set to "default" in overrides, you override it back to "default".

So either set task_set to "cave_default" and start_location to "caves", or use:

return {
override_enabled = true,
preset = "DST_CAVE", -- "SURVIVAL_TOGETHER", "MOD_MISSING", "SURVIVAL_TOGETHER_CLASSIC", "SURVIVAL_DEFAULT_PLUS", "COMPLETE_DARKNESS", "DST_CAVE", "DST_CAVE_PLUS"
overrides = {},
}

So you don't override anything that may interfere with the preset.

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

Please be aware that the content of this thread may be outdated and no longer applicable.

×
  • Create New...