diff --git a/play.py b/play.py index e1224f3..0af2425 100644 --- a/play.py +++ b/play.py @@ -66,10 +66,12 @@ def play_aidungeon_2(): action = action.strip() action = action[0].upper() + action[1:] + if action[-1] not in [".", "?", "!"]: + action = action + "." action = "\n> " + action + "\n" # action = remove_profanity(action) - # action = first_to_second_person(action) + #action = first_to_second_person(action) result = "\n" + story_manager.act(action) if player_died(result):