Migrate from v1.9.0 to v1.10.0 - Andre601/AdvancedServerList GitHub Wiki

wiki-moved Wiki moved!

The wiki has been moved to a new location and can be found here: https://docs.andre601.ch/AdvancedServerList

v1.9.0 has introduced a motds option which unfortunately has been removed in 1.10.0 again, which means any server list profile using this option is no longer working as expected.

To fix this, you have to migrate the old motds option to the new profiles[n].motd option.

Example

Assume we have the following configuration in 1.9.0...

priority: 0

motds:
  - |-
    'Line 1'
    'Line 2'
  - |-
    'Line A'
    'Line B'

favicon: '${player name}'

playerCount:
  hidePlayers: false
  players:
    - 'Line 1'
    - 'Line 2'
    - 'Line 3'
  text: '<grey>Hover Me!'
  extraPlayers:
    enabled: false
    amount: 0

...in 1.10.0 do we now have this:

priority: 0

profiles:
  - motd:
      - 'Line 1'
      - 'Line 2'
  - motd:
      - 'Line A'
      - 'Line B'

favicon: '${player name}'

playerCount:
  hidePlayers: false
  players:
    - 'Line 1'
    - 'Line 2'
    - 'Line 3'
  text: '<grey>Hover Me!'
  extraPlayers:
    enabled: false
    amount: 0
⚠️ **GitHub.com Fallback** ⚠️