From def9b584a86bcd577c3d4f6567808376f3037921 Mon Sep 17 00:00:00 2001 From: Alek Ratzloff Date: Sun, 28 Nov 2021 17:19:42 -0800 Subject: [PATCH] Fix game start room Game start room was accidentally hardcoded to be "prelude" instead of using the start_room variable. This is fixed. Signed-off-by: Alek Ratzloff --- agame/__main__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/agame/__main__.py b/agame/__main__.py index 988d0ee..65caca0 100644 --- a/agame/__main__.py +++ b/agame/__main__.py @@ -28,7 +28,7 @@ start_room = game_module.start_room # type: ignore game = Game( display=ANSIDisplay(), database=database, - room=database.rooms["prelude"], + room=database.rooms[start_room], ) try: