diff --git a/src/manager.py b/src/manager.py index e2f4cd4..ebd0dd7 100644 --- a/src/manager.py +++ b/src/manager.py @@ -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 diff --git a/src/player.py b/src/player.py index 3407006..d02a986 100644 --- a/src/player.py +++ b/src/player.py @@ -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))