latitudegames / AIDungeon

Infinite adventures await!
http://www.aidungeon.io/
MIT License
3.18k stars 556 forks source link

Fix ValueError for missing story rating. #173

Closed ts-co closed 4 years ago

ts-co commented 4 years ago

Original Error:

Traceback (most recent call last):
  File "play.py", line 292, in <module>
    play_aidungeon_2()
  File "play.py", line 158, in play_aidungeon_2
    rating_float = float(rating)
ValueError: could not convert string to float:

Added a while loop and a clamp on the rating to not exceed or go below 1-10 rating.