From 375eec002f1e2a86395bb0b0bd3fe944f44d57fb Mon Sep 17 00:00:00 2001 From: s464923 Date: Sun, 10 Mar 2024 20:12:27 +0100 Subject: [PATCH] board change --- board.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/board.py b/board.py index 190f1a035..761a4794a 100644 --- a/board.py +++ b/board.py @@ -18,7 +18,7 @@ class Board: for col in range(cols): cube_rect = pygame.Rect(row * size, col * size, size, size) - if (row + col) % 2 == 0: + if (row) % 2 == 0: win.blit(self.grass, cube_rect) else: win.blit(self.dirt, cube_rect)