Skip to content

Commit

Permalink
wrong file
Browse files Browse the repository at this point in the history
  • Loading branch information
DaNubCoding committed Nov 10, 2024
1 parent 7a7df77 commit 3714ef2
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion src/manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ def __init__(self) -> None:

self.client = Client(self)

self.flags = HWSURFACE | DOUBLEBUF | RESIZABLE | SCALED# | FULLSCREEN
self.flags = HWSURFACE | DOUBLEBUF | RESIZABLE | SCALED | FULLSCREEN
self.screen = pygame.display.set_mode((WIDTH, HEIGHT), self.flags)
self.clock = pygame.time.Clock()
self.dt = self.clock.tick_busy_loop(FPS) / 1000
Expand Down
1 change: 0 additions & 1 deletion src/player.py
Original file line number Diff line number Diff line change
Expand Up @@ -469,7 +469,6 @@ def update_position(self) -> None:
self.can_move = self.frame_group != self.assets.player_dig and not self.digging

def add_snowball(self, size: int) -> None:
size = 2
self.snowball_queue.append(size)
self.dig_progress.snowballs_displays.append(self.dig_progress.SnowballDisplay(self.scene, self, size))

Expand Down

0 comments on commit 3714ef2

Please sign in to comment.