Change image of left-waiter

This commit is contained in:
s450026 2020-04-26 21:07:30 +02:00
parent 84abac95e7
commit f60679cd08
5 changed files with 1 additions and 2 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.4 KiB

After

Width:  |  Height:  |  Size: 3.4 KiB

View File

@ -48,4 +48,3 @@ class Graphics:
self.screen.blit(self.image['waiter-down'], (x * self.block_size, y * self.block_size))
if direction == 4:
self.screen.blit(self.image['waiter-left'], (x * self.block_size, y * self.block_size))
self.screen.blit(self.image['waiter'], (x * self.block_size, y * self.block_size))

View File

@ -9,7 +9,7 @@ class Waiter(pygame.sprite.Sprite):
pygame.sprite.Sprite.__init__(self)
self.X = 0
self.Y = 0
self.direction = 0
self.direction = 2
self.frame = 0
self.matrix = Matrix(graphics=graphics)