From b85d30c241ce175b2e2800629ad44b36b5c4e762 Mon Sep 17 00:00:00 2001 From: ThisBirchWood Date: Tue, 18 Mar 2025 19:11:23 +0100 Subject: [PATCH] PATCH: Incorrect round swap value --- models/match.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/models/match.py b/models/match.py index 84d8341..09fd93d 100644 --- a/models/match.py +++ b/models/match.py @@ -38,7 +38,7 @@ class Match: self.round = self.current_tick["total_rounds_played"].values[0] - if self.round >= 8: + if self.round >= 12: self.team_1.set_t() self.team_2.set_ct() self.team_1.score = int(self.current_tick[self.current_tick["team_num"] == 3]["team_rounds_total"].values[0])