Added serverOrder option, fixed an issue with 1.7 clients.
The excludeServers option had been broken for 1.7 clients. That's fixed now.
A
serverOrder option has been added to the
players by server component. With it the order of the servers can be customized. Example:
Code (Text):
components:
...
- !players_by_server
playerSet: global
serverOrder: "alphabetically"
...
Possible options:
Code (Text):
serverOrder: "alphabetically"
serverOrder: "playercount" # Server with most players at the top
serverOrder: "online" # Servers that are running above servers which are offline
# Multiple options can be chained like this:
serverOrder: "playercount,online"
serverOrder: "playercount,online,alphabetically"