Spaces:
Runtime error
Runtime error
Ali Abid
commited on
Commit
•
4752626
1
Parent(s):
2a68adc
changes
Browse files- game_manager.py +1 -1
- run.py +1 -1
game_manager.py
CHANGED
@@ -17,7 +17,7 @@ MAX_WORD_SIZE = 10
|
|
17 |
WORD_LIMIT = 7500
|
18 |
COMPLETE_GAME_TIMEOUT = 60 * 60
|
19 |
INCOMPLETE_GAME_TIMEOUT = 60 * 60 * 24
|
20 |
-
GUESS_TIMEOUT =
|
21 |
|
22 |
|
23 |
with open("words.json", "r") as f:
|
|
|
17 |
WORD_LIMIT = 7500
|
18 |
COMPLETE_GAME_TIMEOUT = 60 * 60
|
19 |
INCOMPLETE_GAME_TIMEOUT = 60 * 60 * 24
|
20 |
+
GUESS_TIMEOUT = 30
|
21 |
|
22 |
|
23 |
with open("words.json", "r") as f:
|
run.py
CHANGED
@@ -15,7 +15,7 @@ with gr.Blocks(css="style.css") as app:
|
|
15 |
|
16 |
- At the start of the game, a crossword puzzle will be created, with single word already solved.
|
17 |
|
18 |
-
- At any time, a riddle with three clues will be shown, corresponding to three words that branch off the solved part of the puzzle. Riddles are regenerated every
|
19 |
|
20 |
- You can play against friends, in which case enter a shared room name below. To play alone, leave the fields blank and start the game.
|
21 |
|
|
|
15 |
|
16 |
- At the start of the game, a crossword puzzle will be created, with single word already solved.
|
17 |
|
18 |
+
- At any time, a riddle with three clues will be shown, corresponding to three words that branch off the solved part of the puzzle. Riddles are regenerated every 30 seconds if not solved.
|
19 |
|
20 |
- You can play against friends, in which case enter a shared room name below. To play alone, leave the fields blank and start the game.
|
21 |
|