From 2a03b28cde8668b33938c0932fcfbecfe611312c Mon Sep 17 00:00:00 2001
From: fheinrich <fheinrich@techfak.uni-bielefeld.de>
Date: Tue, 19 Mar 2024 17:35:14 +0100
Subject: [PATCH] Removed dummy list of served orders

---
 cooperative_cuisine/pygame_2d_vis/gui.py | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/cooperative_cuisine/pygame_2d_vis/gui.py b/cooperative_cuisine/pygame_2d_vis/gui.py
index 7b6f34f7..cd5f1795 100644
--- a/cooperative_cuisine/pygame_2d_vis/gui.py
+++ b/cooperative_cuisine/pygame_2d_vis/gui.py
@@ -1181,7 +1181,6 @@ class PyGameGUI:
         )
 
         served_meals = state["served_meals"]
-        served_meals = [("0", "TomatoSoup")] * 20
 
         row_height = self.window_height * 0.07
         container_width = self.scroll_width_completed_meals
@@ -1455,7 +1454,7 @@ class PyGameGUI:
             ]
             # layout_path = self.layout_file_paths[self.current_layout_idx]
 
-        item_info_path = ROOT_DIR / "configs" / "item_info.yaml"
+        item_info_path = ROOT_DIR / "configs" / "item_info_debug.yaml"
         with open(item_info_path, "r") as file:
             item_info = file.read()
         with open(layout_path, "r") as file:
-- 
GitLab