From d19100096d349f65ff8c0925fc1910e5a940142a Mon Sep 17 00:00:00 2001 From: csd4ni3l Date: Thu, 24 Apr 2025 11:35:03 +0200 Subject: [PATCH] fix rows giving less points than columns --- game/play.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/game/play.py b/game/play.py index c9caed0..4edf121 100644 --- a/game/play.py +++ b/game/play.py @@ -104,7 +104,7 @@ class Game(arcade.gui.UIView): for col in range(COLS): self.occupied[row_idx][col] = 0 - self.score += 10 + self.score += 25 for col in range(COLS): column = [row[col] for row in self.occupied.values()]