From d4e53788830730dd6329bb52a545ea13a877fc73 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20Gro=C3=9F?= Date: Mon, 19 Jun 2023 12:42:20 +0200 Subject: [PATCH] Remove debug options --- src/boarhuntingsimulator.py | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/src/boarhuntingsimulator.py b/src/boarhuntingsimulator.py index 7a5e9f2..43400cf 100644 --- a/src/boarhuntingsimulator.py +++ b/src/boarhuntingsimulator.py @@ -35,12 +35,7 @@ class Game: Text.print_header("Welcome", HeaderStyle.ROUND) Text.type(mt.intro_text, delay=0.01, newline_delay=1.0) while not self.quit: - options = [ - Option("Test option", lambda: print("Test option selected\n")), - Option("Test option no callback", None), - ] - options.extend(self.current_location.options) - Menu("What would you like to do?", options).show() + Menu("What would you like to do?", self.current_location.options).show()