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:
@@ -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:
|
||||||
|
|||||||
Reference in New Issue
Block a user