From bdad66539f1102b53c4c4d151bf70684c7bf55f4 Mon Sep 17 00:00:00 2001 From: fheinrich <fheinrich@techfak.uni-bielefeld.de> Date: Tue, 19 Mar 2024 15:30:45 +0100 Subject: [PATCH] Fixed item_info in gui, was debug --- cooperative_cuisine/pygame_2d_vis/gui.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cooperative_cuisine/pygame_2d_vis/gui.py b/cooperative_cuisine/pygame_2d_vis/gui.py index b90ddf7f..7b6f34f7 100644 --- a/cooperative_cuisine/pygame_2d_vis/gui.py +++ b/cooperative_cuisine/pygame_2d_vis/gui.py @@ -1455,7 +1455,7 @@ class PyGameGUI: ] # layout_path = self.layout_file_paths[self.current_layout_idx] - item_info_path = ROOT_DIR / "configs" / "item_info_debug.yaml" + item_info_path = ROOT_DIR / "configs" / "item_info.yaml" with open(item_info_path, "r") as file: item_info = file.read() with open(layout_path, "r") as file: -- GitLab