adventure-game #3

Open
Kenwood wants to merge 80 commits from adventure-game into master
1 changed files with 1 additions and 1 deletions
Showing only changes of commit 234d03db60 - Show all commits

View File

@ -19,7 +19,7 @@ class GameNavigator(npyscreen.FormBaseNew):
""" """
def update_log(self, newline): 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 self.logList = self.logList[-7:] # Truncate to only the last 5 lines
res = '' # Convert the list to a string res = '' # Convert the list to a string