fix rows giving less points than columns

This commit is contained in:
csd4ni3l
2025-04-24 11:35:03 +02:00
parent 2e4c6fcec1
commit d19100096d

View File

@@ -104,7 +104,7 @@ class Game(arcade.gui.UIView):
for col in range(COLS): for col in range(COLS):
self.occupied[row_idx][col] = 0 self.occupied[row_idx][col] = 0
self.score += 10 self.score += 25
for col in range(COLS): for col in range(COLS):
column = [row[col] for row in self.occupied.values()] column = [row[col] for row in self.occupied.values()]