From 6668206e2a3c98efdcc4276a43da01bd5a43b46c Mon Sep 17 00:00:00 2001 From: Nick Date: Mon, 25 Nov 2019 22:06:37 -0700 Subject: [PATCH] update --- play.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/play.py b/play.py index ca8fedf..1222a9b 100644 --- a/play.py +++ b/play.py @@ -133,8 +133,10 @@ def play_aidungeon_2(): break elif player_died(result): action = "> You die." - final_result = story_manager.act(action) + final_result = cut_trailing_sentence(story_manager.act(action)) console_print(result + final_result) + console_print("GAME OVER") + break else: console_print(result)