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.5.3 to v1.6.0
Andre_601 edited this page Aug 27, 2023
·
5 revisions
The wiki has been moved to a new location and can be found here: https://docs.andre601.ch/AdvancedServerList
v1.6.0 brought some changes to the Structure of the Server List Profile that requires you to perform an update to your files.
Migration should be relatively easy as you only have to update a few options:
-
playerCount
is now a Section containinghidePlayers
and the other renamed options:-
players
->hover
-
playerCount
->text
-
-
xMore
has been removed. Instead is there now a new section calledextraPlayers
in theplayerCount
Section:-
enabled
is used to enable/disable the option. -
amount
is the previousxMore
with the difference that it now allows negative numbers too.
-
Assume we have the following file from v1.5.3...
priority: 0
motd:
- 'Line 1'
- 'Line 2'
favicon: '${player name}'
hidePlayers: false
players:
- 'Line 1'
- 'Line 2'
- 'Line 3'
playerCount: '<grey>Hover Me!'
xMore: 1
...in v1.6.0 will it now look like this:
priority: 0
motd:
- 'Line 1'
- 'Line 2'
favicon: '${player name}'
playerCount:
hidePlayers: false
hover:
- 'Line 1'
- 'Line 2'
- 'Line 3'
text: '<grey>Hover Me!'
extraPlayers:
enabled: true
amount: 1