Fixed Sal's oopsie

addJukeboxSong now works correctly
This commit is contained in:
Jun-pei 2021-09-18 01:49:17 -07:00 committed by GitHub
parent 45036a9b6c
commit a03ad17257
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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.";
}