From 8387792e0e76cc08116e86a835a3e7b353800afe Mon Sep 17 00:00:00 2001 From: Leo VIALLON-GALINIER Date: Sat, 2 May 2020 23:11:33 +0200 Subject: [PATCH] Bug in counter points --- db.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/db.py b/db.py index bb83111..be42d6b 100644 --- a/db.py +++ b/db.py @@ -284,7 +284,7 @@ class Game(db.Model): # Capote if self.points_0 >= 162 or self.points_1 >= 162: - winequipe = 0 if self.points_0 == 162 else 1 + winequipe = 0 if self.points_0 >= 162 else 1 # Capote possible. winnr = self.distributeur ccc = self.cards_to_distribute.split(',')