xdddd
This commit is contained in:
@ -266,9 +266,11 @@ public class ScoreboardProvider implements BoardAdapter {
|
||||
lines.add("&7[" + opposingTeam.getPlayerTeam().getChatColor() + opposingTeam.getPlayerTeam().getSmallName() + "&7] &c&l✗");
|
||||
}
|
||||
lines.add(" ");
|
||||
lines.add(yourTeam.getPlayerTeam().getChatColor() + yourTeam.playingPlayers().collect(Collectors.toList()).get(0).getName());
|
||||
Player teamAplayer = yourTeam.playingPlayers().collect(Collectors.toList()).get(0);
|
||||
lines.add(yourTeam.getPlayerTeam().getChatColor() + (teamAplayer != null ? teamAplayer.getName() : "None"));
|
||||
lines.add("&7VS");
|
||||
lines.add(opposingTeam.getPlayerTeam().getChatColor() + opposingTeam.playingPlayers().collect(Collectors.toList()).get(0).getName());
|
||||
Player teamBplayer = opposingTeam.playingPlayers().collect(Collectors.toList()).get(0);
|
||||
lines.add(opposingTeam.getPlayerTeam().getChatColor() + (teamBplayer != null ? teamBplayer.getName() : "None"));
|
||||
lines.add(" ");
|
||||
lines.add("&dtilly.rip");
|
||||
lines.add(CC.scoreboardBar);
|
||||
|
Reference in New Issue
Block a user