This repository has been archived by the owner on Apr 9, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 3
Migrate from v1.9.0 to v1.10.0
Andre_601 edited this page Aug 27, 2023
·
3 revisions
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.
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