Jump to content

[Server Crash] - PANIC: missing required prefab! pigking on world with «task_set = "cave_default"»


sisteczko

Recommended Posts

Bug Submission:

Category: Server Crash

Issue Title: PANIC: missing required prefab! pigking on world with «task_set = "cave_default"»

Issue Description: When creating a new vanilla world with no mods on a dedicated server (build 157447) the process takes very long, and keeps repeating the world generation phase seemingly forever. Here is server log: http://pastebin.ubuntu.com/13489945/

Steps to Reproduce: Create a vanilla log on a server build 157447 with the following worldgenoverride.lua:

return {

override_enabled = true,

misc = {

task_set = "cave_default",

}

}

  • Developer

Unfortunately, that isn't a valid setting. If you're looking to make the world into caves, then you should have this instead:

return {    override_enabled = true,    preset = "DST_CAVE",}
Hope that helps!

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...