New bird color

This commit is contained in:
2021-03-26 12:21:55 +00:00
parent 987653ec18
commit 8f7d2bd6a4
+1 -2
View File
@@ -113,11 +113,10 @@ class Enemy(pygame.sprite.Sprite):
elif self.type == 2:
self.image = pygame.Surface((50, 25))
self.image.fill((255, 0, 255))
self.image.fill((51, 51, 0))
self.rect = self.image.get_rect()
self.height = screenSize[1]-floorHeight-self.rect.height/2 - 10 - 25*self.subtype
# self.image.fill((random.randint(0, 255),random.randint(0, 255),random.randint(0, 255)))
self.rect.center = (screenSize[0], self.height)
def update(self):