From 39045c3882df737a4451ef2352a61ada86fb33e9 Mon Sep 17 00:00:00 2001 From: Tango Date: Mon, 23 Jun 2025 20:19:32 +0100 Subject: [PATCH] Oh my god I'm stupid, fixed game not launching --- game.py | 1 + 1 file changed, 1 insertion(+) diff --git a/game.py b/game.py index 5f4f750..a9e6604 100644 --- a/game.py +++ b/game.py @@ -71,6 +71,7 @@ class Game(gameUtils.Game): #Selects random music to play at the start of the game, might change because I just threw this together. #I feel horrible writing this code this feels super unoptimised :c + self.musicNumber = randint(1,2) if self.musicNumber == 1: pygame.mixer.music.load("./assets/surrounded.ogg") self.playMusic(-1)