From 234d03db60396cd2df0f9cb81b51ba467e1c4f01 Mon Sep 17 00:00:00 2001 From: Joe S <31870999+KenwoodFox@users.noreply.github.com> Date: Wed, 24 Feb 2021 00:17:43 -0500 Subject: [PATCH] =?UTF-8?q?Add=20a=20cute=20little=20carrot=20to=20the=20p?= =?UTF-8?q?layer's=20log=20=E2=99=A5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Adventure Game/adventure_game/GameNavigator.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Adventure Game/adventure_game/GameNavigator.py b/Adventure Game/adventure_game/GameNavigator.py index c24e3f2..c32f50b 100644 --- a/Adventure Game/adventure_game/GameNavigator.py +++ b/Adventure Game/adventure_game/GameNavigator.py @@ -19,7 +19,7 @@ class GameNavigator(npyscreen.FormBaseNew): """ def update_log(self, newline): - self.logList.append(newline) # Append the newline + self.logList.append('> ' + newline) # Append the newline self.logList = self.logList[-7:] # Truncate to only the last 5 lines res = '' # Convert the list to a string