Commit
·
53b79ac
1
Parent(s):
046d300
bugfix
Browse files
world.py
CHANGED
@@ -289,7 +289,7 @@ class World:
|
|
289 |
if len(puzzles_in_the_scene)>0:
|
290 |
details+="Puzzles:\n"
|
291 |
for puzzle in puzzles_in_the_scene:
|
292 |
-
details+= f'- <{puzzle.name}>: {(
|
293 |
|
294 |
return world_description + '\n' + details
|
295 |
|
|
|
289 |
if len(puzzles_in_the_scene)>0:
|
290 |
details+="Puzzles:\n"
|
291 |
for puzzle in puzzles_in_the_scene:
|
292 |
+
details+= f'- <{puzzle.name}>: {(". ").join(puzzle.descriptions)}. The riddle to solve is: "{puzzle.problem}". The expected answer, that you CANNOT tell the player (EVER) is: "{puzzle.answer}".\n'
|
293 |
|
294 |
return world_description + '\n' + details
|
295 |
|