mirror of
https://code.chipmunk.land/ChomeNS/chipmunkmod.git
synced 2025-11-13 18:46:15 +00:00
fix: more SongPlayer fixes
This commit is contained in:
parent
d579f8bff8
commit
fa9c2954b3
1 changed files with 1 additions and 1 deletions
|
|
@ -151,7 +151,7 @@ public class SongPlayer {
|
||||||
e.printStackTrace();
|
e.printStackTrace();
|
||||||
}
|
}
|
||||||
|
|
||||||
if (currentSong.paused) return;
|
if (currentSong == null || currentSong.paused) return;
|
||||||
|
|
||||||
handlePlaying();
|
handlePlaying();
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue