From 0c74366e4a99ed6a5bcd244c29560e188ace705c Mon Sep 17 00:00:00 2001 From: Jamon Date: Mon, 12 Aug 2024 09:54:00 +1200 Subject: [PATCH] discord notification for automated song alerts looked fucky --- game_server.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/game_server.py b/game_server.py index 1660204..6e3d308 100644 --- a/game_server.py +++ b/game_server.py @@ -1664,7 +1664,7 @@ class MusicPlayer: new_song = self.get_current_song() # Send Discord alert for automatic song change - send_discord_alert(f"🎵 Now playing: {self.get_formatted_current_song}") + send_discord_alert(f"🎵 Now playing: {self.get_formatted_current_song()}") return True # Indicates that the song has changed return False