From 7d78a5270805f016b8095beab8dcaea9408b01c2 Mon Sep 17 00:00:00 2001 From: Lucas Alber Date: Fri, 30 Sep 2022 17:47:57 +0200 Subject: [PATCH] Output savegame filename --- main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.py b/main.py index 0a1a993..df1730c 100644 --- a/main.py +++ b/main.py @@ -76,7 +76,7 @@ def main(): # LOAD LAST GAME - if os.path.isfile("save.json") and ui.query_yes_no("Letztes Spiel laden?"): + if os.path.isfile("save.json") and ui.query_yes_no("Letztes Spiel laden? (save.json)"): with open(SAVE_FILE, "r") as file: save = json.load(file) players = save["players"]