From d3926dcea3130ece6065b2997d3addf8e243d3a9 Mon Sep 17 00:00:00 2001
From: fheinrich <fheinrich@techfak.uni-bielefeld.de>
Date: Tue, 5 Dec 2023 15:43:18 +0100
Subject: [PATCH] Renamed Color again

---
 overcooked_simulator/pygame_gui.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/overcooked_simulator/pygame_gui.py b/overcooked_simulator/pygame_gui.py
index 4a8bc082..a1c655ef 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.
-- 
GitLab