ChaoticTrials / SkyblockBuilder

Let you create a custom skyblock island via config
https://modrinth.com/mod/skyblock-builder
Apache License 2.0
8 stars 6 forks source link

can make the sky island generate in an extra dimension, the main world unchanged #101

Closed KuroPeach closed 2 years ago

KuroPeach commented 2 years ago

Describe your idea

Is it possible to make the sky island generate in an extra dimension, while the overworld remains unchanged. I tried this mod and it only works if it is set to false.

"Overworld": {

  // Should overworld generate as in default world type? [default: false]
  "Default": false
}
MelanX commented 2 years ago

You could use the nether or end as start dimension. You could create an exact copy of the overworld via Datapack for your normal overworld. Not sure right now if it’s possible to add a dimension (copy the overworld) and use this as start dimension, never tried that.

KuroPeach commented 2 years ago

I did change the starting dimension, do I need to change any dimension of minecraft to the void to work?

MelanX commented 2 years ago

I think I didn’t understand your question

KuroPeach commented 2 years ago

thanks, it works now, I need to have either world default disabled.

"Dimensions": {

"End": {

  // Should end generate as in default world type? [default: false]
  "Default": false,

  // Should the main island be generated as normal? [default: true]
  "mainIsland": true
},

"Nether": {

  // Should nether generate as in default world type? [default: false]
  "Default": true
},

"Overworld": {

  // Should overworld generate as in default world type? [default: false]
  "Default": true
}

},