diff --git a/app/src/main/java/fi/sundae/bot/tournament/Match.java b/app/src/main/java/fi/sundae/bot/tournament/Match.java index bcbae25..90646c1 100644 --- a/app/src/main/java/fi/sundae/bot/tournament/Match.java +++ b/app/src/main/java/fi/sundae/bot/tournament/Match.java @@ -95,7 +95,7 @@ public MessageEmbed toDisagreementEmbed() { The match between <@%s> and <@%s> has failed due to a disagreement in state. Any kills during the match have been discarded """ .formatted(getPlayerOne(), getPlayerTwo())) - .addField("Game ID", "`%s`".formatted(this.CODE), true) + .addField("Node ID", "`%s`".formatted(this.CODE), true) .addField("Game ID", "`%s`".formatted(this.gameTxHash), true) .build(); } @@ -109,7 +109,7 @@ public MessageEmbed toDisconnectEmbed() { The match between <@%s> and <@%s> has failed due to a player disconnect. Any kills during the match have been discarded """ .formatted(getPlayerOne(), getPlayerTwo())) - .addField("Game ID", "`%s`".formatted(this.CODE), true) + .addField("Node ID", "`%s`".formatted(this.CODE), true) .addField("Game ID", "`%s`".formatted(this.gameTxHash), true) .build(); } diff --git a/app/src/main/java/fi/sundae/bot/tournament/Matchmaker.java b/app/src/main/java/fi/sundae/bot/tournament/Matchmaker.java index 660acc7..5d34505 100644 --- a/app/src/main/java/fi/sundae/bot/tournament/Matchmaker.java +++ b/app/src/main/java/fi/sundae/bot/tournament/Matchmaker.java @@ -77,8 +77,6 @@ public void endMatch(MatchRequest matchRequest, JDA jda) { .findFirst(); if (maybeMatch.isEmpty()) { - ACTIVE_MATCHES.forEach( - match -> System.out.printf("Match gameTx: %s\n", match.getGameTxHash())); LOGGER.info("Match {} is not in ACTIVE_MATCHES", matchRequest.getGameId()); return; }