develop-fairScoreboard #4
Reference in New Issue
Block a user
No description provided.
Delete Branch "develop-fairScoreboard"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Ich hoffe es funktioniert alles...
@@ -59,2 +66,3 @@
.toList();
new ChatMessage(Icon.STAR)
.numberedList(this.places.stream().map(player -> String.format("%s - %s Punkte", player.getUsername(), tournament.getGameScores().get(player))).toList())
.list(players.stream().map(player -> String.format("%s. %s - %s Punkte", this.getRankPosition(player)+1, player.getUsername(), tournament.getGameScores().get(player))).toList())
korrekte verwendung von datentypen im format (%d)
@@ -47,2 +47,3 @@
for (Set<Player> players : getPlaces()) {
if(count >= this.rewardConfiguration.rewardCount().size()) break;
itemCount.put(player.getUuid(), this.rewardConfiguration.rewardCount().get(count));
for(Player player : players) {
warum kein lambda foreach?
Weil count keine effectively final temp variable (oder so) ist
View command line instructions
Checkout
From your project repository, check out a new branch and test the changes.