From 24b6d0b94d68c3a5186df1fd28913dde16c81731 Mon Sep 17 00:00:00 2001 From: EKNr1 Date: Sun, 25 Feb 2024 21:42:56 +0100 Subject: [PATCH] Changed the window title to "Wobbl Sand". --- falling_sand.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/falling_sand.py b/falling_sand.py index 5489736..906e759 100644 --- a/falling_sand.py +++ b/falling_sand.py @@ -61,7 +61,7 @@ class FallingSandParticle: y += 2 else: - if self.not_moving == 16: + if self.not_moving == 32: self.app.falling_sand_particles.remove(self) return @@ -82,7 +82,7 @@ class FallingSand: pygame.init() self.screen = pygame.display.set_mode((1000, 600), pygame.RESIZABLE) - pygame.display.set_caption("Game") + pygame.display.set_caption("Wobbl Sand") self.window = Window.from_display_module() self.loading_surface = self.generate_loading_surface()