From 4e636289248318a83ba78b3bb551284949652ac8 Mon Sep 17 00:00:00 2001 From: Nick Walton Date: Mon, 25 Nov 2019 18:05:58 -0700 Subject: [PATCH] uncapitalize --- play.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/play.py b/play.py index ec8fa7a..07d59e2 100644 --- a/play.py +++ b/play.py @@ -94,9 +94,11 @@ def play_aidungeon_2(): break elif action == "quit": exit() + - if action != "" and action.lower() != "continue": + if action != "": action = action.strip() + action = action[0].lower() + action[1:] action = first_to_second_person(action)