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

1.14 compatibility #25

Closed tastybento closed 5 years ago

tastybento commented 5 years ago

This makes the addon work on 1.14. There were 2 issues:

  1. world creation needs to be done with a lower-case world. Note that this doesn't mean that a new world is created because world naming is apparently case-insensitive
  2. The block populator was setting the block type with physics = true (the default). With 1.14 this would cause the server to go into some kind of infinite loop and freeze. Setting blocks with physics set to false fixed the issue.

https://github.com/BentoBoxWorld/CaveBlock/issues/22

tastybento commented 5 years ago

@BONNe Please review and merge.