From 0a39f6be22ffc12cff54360266f6505431fa8cfe Mon Sep 17 00:00:00 2001 From: Ruslan Ignatov Date: Sat, 27 Mar 2021 14:05:09 +0300 Subject: [PATCH] Fixed first enemies type --- Drakora.pyw | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Drakora.pyw b/Drakora.pyw index 888d3c4..9c23e57 100644 --- a/Drakora.pyw +++ b/Drakora.pyw @@ -73,7 +73,7 @@ class Player(pygame.sprite.Sprite): class Enemy(pygame.sprite.Sprite): def setNextEnemyType(self, score): if score < 10: - self.type = 2 + self.type = 1 elif score < 25: if random.randint(1, 100) < 95: self.type = 1