Add a cute little carrot to the player's log ♥

This commit is contained in:
Joe S 2021-02-24 00:17:43 -05:00
parent 4d85b25dab
commit 234d03db60
1 changed files with 1 additions and 1 deletions

View File

@ -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