From a03ad172575830f0209cf6f39a0f99be126a8f76 Mon Sep 17 00:00:00 2001 From: Jun-pei <90669315+Jun-pei@users.noreply.github.com> Date: Sat, 18 Sep 2021 01:49:17 -0700 Subject: [PATCH] Fixed Sal's oopsie addJukeboxSong now works correctly --- core/src/area_data.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/src/area_data.cpp b/core/src/area_data.cpp index 86566eb..9008932 100644 --- a/core/src/area_data.cpp +++ b/core/src/area_data.cpp @@ -541,9 +541,9 @@ QString AreaData::addJukeboxSong(QString f_song) if (m_jukebox_queue.size() == 0) { emit playJukeboxSong(AOPacket("MC",{f_song,QString::number(-1)}), index()); m_jukebox_timer->start(l_song_duration * 1000); + setCurrentMusic(f_song); + setMusicPlayedBy("Jukebox"); } - setCurrentMusic(f_song); - setMusicPlayedBy("Jukebox"); m_jukebox_queue.append(f_song); return "Song added to Jukebox."; }