From accce44f6178b7fbf335f359fe2a44a6ed1f4778 Mon Sep 17 00:00:00 2001 From: Nick Walton Date: Mon, 18 Nov 2019 22:49:06 -0700 Subject: [PATCH] update --- play.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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):