From 0d7981091b7a75fc813f60250c19b25043d9de78 Mon Sep 17 00:00:00 2001 From: Lanta Date: Fri, 18 Apr 2025 20:35:21 +0200 Subject: [PATCH] fix --- discord/report_new_matches.ps1 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/discord/report_new_matches.ps1 b/discord/report_new_matches.ps1 index 3cc8728..3661a22 100644 --- a/discord/report_new_matches.ps1 +++ b/discord/report_new_matches.ps1 @@ -101,10 +101,10 @@ catch { } write-output $player_matches write-output $new_win_matches -$new_win_matches = $player_matches[-1].new_win_matches +$new_win_matches = $player_matches.new_win_matches # Gebruik nu de lijst van nieuwe verloren matches uit het JSON-bestand -$new_loss_matches = $player_matches[-1].new_loss_matches +$new_loss_matches = $player_matches.new_loss_matches # Post verloren matches naar #losers kanaal # foreach ($lossid in $new_loss_matches) {