uncapitalize

This commit is contained in:
Nick Walton
2019-11-25 18:05:58 -07:00
parent 35243f8f61
commit 4e63628924
+3 -1
View File
@@ -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)