From c155e11d873810836d6ff4dde0675ed125914a41 Mon Sep 17 00:00:00 2001 From: Brosef Date: Tue, 24 Jun 2025 14:45:16 +0100 Subject: [PATCH] Added motivational comment --- game.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/game.py b/game.py index 8042856..7c97202 100644 --- a/game.py +++ b/game.py @@ -68,6 +68,8 @@ 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 + # Bro I'm gonna be honest, there's not much I'd change about that, you're good. + # The only thing I can think if just moving `set_volume()` to after both if statements. self.musicNumber = randint(1,2) if self.musicNumber == 1: pygame.mixer.music.load("./assets/surrounded.ogg")