Skip to content

Changed configuration

Latest
Compare
Choose a tag to compare
@kikelkik kikelkik released this 24 Apr 20:44
· 1 commit to master since this release

With this update, the configuration of baseBlocks has changed in a structural fashion. This allows to remove base blocks from the default config. (see #26)
Old:

baseBlocks:
  IRON_BLOCK:
    speed: 0.5
  NOTE_BLOCK:
    speed: 0.2
    music: true

New:

baseBlocks:
  - type: IRON_BLOCK
    speed: 0.5
  - type: NOTE_BLOCK
    speed: 0.2
    music: true

More changes:

  • fix teleporting to lift destination coordinates when changing worlds while lift is active (#29)
  • changed default maxHeight to 319
  • Update NoteBlockAPI to 1.6.2