BentoBoxWorld / CaveBlock

CaveBlock addon for BentoBox. An interesting variation from Skyblock, where your goal is to survive in a cube of stone!
Eclipse Public License 2.0
16 stars 6 forks source link

Generating the world #28

Closed Kaczuc closed 5 years ago

Kaczuc commented 5 years ago

Is it possible to check the default generator for CaveBlock modes to only generate the worlds from additionals instead of the default ones?

BONNe commented 5 years ago

In bukkit.yml you need to specify that caveblock worlds uses BentoBox generator:

worlds:
  caveblock-world:
    generator: BentoBox
  caveblock-world_nether:
    generator: BentoBox
  caveblock-world_the_end:
    generator: BentoBox

And in server.properties you need to set caveblock-world as starting level:

level-name=caveblock-world
Kaczuc commented 5 years ago

Thanks ;)