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 <alekratz@gmail.com>
This commit is contained in:
2021-11-28 17:19:42 -08:00
parent 32e8c219a6
commit def9b584a8

View File

@@ -28,7 +28,7 @@ start_room = game_module.start_room # type: ignore
game = Game( game = Game(
display=ANSIDisplay(), display=ANSIDisplay(),
database=database, database=database,
room=database.rooms["prelude"], room=database.rooms[start_room],
) )
try: try: