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