The
excludeServers config option is now working correctly again.
A bug that in some cases prevented players from showing up on the tab list has been fixed.
New placeholders: ${viewer bungeecord_primary_group} and ${player bungeecord_primary_group}
A
fillSlotsVertical option has been added to the
!players component.
@rufusmaiwald
Here's what it does:
Without:
Code (Text):
playerSets:
global:
filter: "true"
type: FIXED_SIZE
size: 40
defaultIcon: colors/dark_gray.png
defaultPing: 1000
components:
- !players
playerSet: global
playerOrder: 'alphabetically'
playerComponent: "${player name}"
morePlayersComponent: {text: "&7... and &e${other_count} &7others", icon: "colors/gray.png", ping: 0}
- !spacer {}
-
-
- {text: "&cTime: &6${time H:mm:ss}", icon: "default/clock.png", ping: 0}
- {text: "&cPlayers: &6${playerset:global size}", icon: "default/players.png", ping: 0}
With:
Code (Text):
playerSets:
global:
filter: "true"
type: FIXED_SIZE
size: 40
defaultIcon: colors/dark_gray.png
defaultPing: 1000
components:
- !players
playerSet: global
playerOrder: 'alphabetically'
playerComponent: "${player name}"
morePlayersComponent: {text: "&7... and &e${other_count} &7others", icon: "colors/gray.png", ping: 0}
fillSlotsVertical: true
- !spacer {}
-
-
- {text: "&cTime: &6${time H:mm:ss}", icon: "default/clock.png", ping: 0}
- {text: "&cPlayers: &6${playerset:global size}", icon: "default/players.png", ping: 0}