Fix turn counter, so that turn 0 is turn 1

This commit is contained in:
Khopa 2019-07-19 19:52:26 +02:00
parent 18bcc1bce7
commit 650ee9666d

View File

@ -32,4 +32,4 @@ class QTurnCounter(QGroupBox):
"""
self.daytime_icon.setPixmap(self.icons[turn % 4])
self.turn_info.setText(current_day.strftime("%d %b %Y"))
self.setTitle("Turn " + str(turn))
self.setTitle("Turn " + str(turn + 1))