Fix thirst console info print

This commit is contained in:
Michał Czekański 2020-04-06 01:08:31 +02:00
parent 998c6c0094
commit 50d8f78ac8

View File

@ -78,7 +78,7 @@ class Ui():
if self.thirstBar.value != statistics.thirst: if self.thirstBar.value != statistics.thirst:
self.thirstBar.updateFill(statistics.thirst) self.thirstBar.updateFill(statistics.thirst)
consoleLines.append(self.timer.getPrettyTime() + " - Stamina: " + str(statistics.thirst)) consoleLines.append(self.timer.getPrettyTime() + " - Thirst: " + str(statistics.thirst))
if len(consoleLines) > 0: if len(consoleLines) > 0:
self.console.addLinesToConsoleAndScrollToDisplayThem(consoleLines) self.console.addLinesToConsoleAndScrollToDisplayThem(consoleLines)