Add a cute little carrot to the player's log ♥
This commit is contained in:
parent
4d85b25dab
commit
234d03db60
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue