Merge pull request 'removed number of fortresses from stats' (#37) from updated_fortress_count into master

Reviewed-on: #37
This commit is contained in:
Aleksandra Muczyńska 2022-06-09 20:39:24 +02:00
commit 952e8663b4

View File

@ -50,10 +50,8 @@ class Stats:
# texts
draw_text('Rycerze: ' + str(len(self.list_knights_blue)), FONT_DARK, self.screen, self.x + 35, self.y + 240, 18) # blue
draw_text('Fortece: ' + str(len(self.list_knights_red)), FONT_DARK, self.screen, self.x + 35, self.y + 270, 18) # red
draw_text('Rycerze: 4', FONT_DARK, self.screen, self.x + 215, self.y + 240, 18)
draw_text('Fortece: 0', FONT_DARK, self.screen, self.x + 215, self.y + 270, 18)
# points
pygame.draw.rect(self.screen, ORANGE, pygame.Rect(self.x, self.y + 390, 340, 3))