diff --git a/overcooked_simulator/pygame_gui.py b/overcooked_simulator/pygame_gui.py index 4a8bc0828e8558750f80933cf84e02923afe19fb..a1c655ef4bee18860ae1efd2a1ffe0b9fd61c8af 100644 --- a/overcooked_simulator/pygame_gui.py +++ b/overcooked_simulator/pygame_gui.py @@ -116,7 +116,7 @@ class PyGameGUI: for x in range(0, self.window_width, block_size): for y in range(0, self.window_height, block_size): rect = pygame.Rect(x, y, block_size, block_size) - pygame.draw.rect(self.screen, BACKGROUND_LINES, rect, 1) + pygame.draw.rect(self.screen, BACKGROUND_LINES_COLOR, rect, 1) def draw_players(self, state): """Visualizes the players as circles with a triangle for the facing diretion.