From f1c254f9280dbf70278529e584715d7ab5ea585b Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Arsenijs=20=C4=BBu?= <alu.e@rkg.lv>
Date: Sun, 3 Mar 2024 20:08:04 +0000
Subject: [PATCH] Update bla.py

---
 bla.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/bla.py b/bla.py
index 8ed184c..3ac5f5a 100644
--- a/bla.py
+++ b/bla.py
@@ -379,9 +379,9 @@ def draw_settings_menu():
 
     # Рисуем кнопку для управления музыкой
     if pygame.mixer.music.get_busy():
-        music_text = font.render("Music Off", True, WHITE)
-    else:
         music_text = font.render("Music On", True, WHITE)
+    else:
+        music_text = font.render("Music Off", True, WHITE)
     music_rect = music_text.get_rect(center=(SCREEN_WIDTH // 2, SCREEN_HEIGHT // 2 - 100))
     screen.blit(music_text, music_rect)