From dd9d01e7e050379af89d753536a8ed4813e6e241 Mon Sep 17 00:00:00 2001 From: vrubel Date: Mon, 15 Jun 2026 16:53:57 +0000 Subject: [PATCH] =?UTF-8?q?Fix:=20=D0=BF=D0=B5=D1=80=D0=B5=D1=81=D1=87?= =?UTF-8?q?=D1=91=D1=82=20=D0=BE=D1=87=D0=BA=D0=BE=D0=B2=20=D0=B2=20=5Fapp?= =?UTF-8?q?ly=5Fround=5Fresults=20=D0=BF=D0=BE=D1=81=D0=BB=D0=B5=20=D0=BF?= =?UTF-8?q?=D1=80=D0=B8=D0=BC=D0=B5=D0=BD=D0=B5=D0=BD=D0=B8=D1=8F=20=D1=80?= =?UTF-8?q?=D0=B5=D0=B7=D1=83=D0=BB=D1=8C=D1=82=D0=B0=D1=82=D0=BE=D0=B2=20?= =?UTF-8?q?=D1=81=D1=8B=D0=B3=D1=80=D0=B0=D0=BD=D0=BD=D0=BE=D0=B3=D0=BE=20?= =?UTF-8?q?=D1=82=D1=83=D1=80=D0=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- bots/client_bot.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/bots/client_bot.py b/bots/client_bot.py index d33c651..f85c449 100644 --- a/bots/client_bot.py +++ b/bots/client_bot.py @@ -258,6 +258,9 @@ def _apply_round_results(tournament, games, rd): s['results'] = list(s.get('results', [])) s['results'].append(res) + for s in standings: + s['points'] = sum(r.get('score', 0) for r in s.get('results', [])) + tournament['current_round'] = rd