mirror of
https://github.com/csd4ni3l/shatterstack.git
synced 2026-01-01 12:33:48 +01:00
fix rows giving less points than columns
This commit is contained in:
@@ -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()]
|
||||||
|
|||||||
Reference in New Issue
Block a user