Spaces:
Running
on
Zero
Running
on
Zero
kwabs22
commited on
Commit
·
fd0c713
1
Parent(s):
9fb3caa
Load game supports media now?
Browse files
app.py
CHANGED
@@ -529,6 +529,7 @@ def load_game(custom_config=None, with_media=False):
|
|
529 |
# Determine the starting location and state
|
530 |
starting_location = next(iter(all_states.keys()))
|
531 |
starting_state = next(iter(all_states[starting_location].keys()))
|
|
|
532 |
|
533 |
game_session = GameSession(starting_location, starting_state)
|
534 |
description, choices, game_log = game_session.get_current_state_info()
|
|
|
529 |
# Determine the starting location and state
|
530 |
starting_location = next(iter(all_states.keys()))
|
531 |
starting_state = next(iter(all_states[starting_location].keys()))
|
532 |
+
print(starting_location, starting_state)
|
533 |
|
534 |
game_session = GameSession(starting_location, starting_state)
|
535 |
description, choices, game_log = game_session.get_current_state_info()
|