mirror of
https://github.com/ninjamuffin99/Funkin.git
synced 2024-11-09 00:04:42 +00:00
Fix bug where restarting the song would sometimes crash.
This commit is contained in:
parent
90f53a78c1
commit
5beb20ec7c
|
@ -834,9 +834,12 @@ class PlayState extends MusicBeatSubState
|
|||
inputSpitter = [];
|
||||
|
||||
// Reset music properly.
|
||||
if (FlxG.sound.music != null)
|
||||
{
|
||||
FlxG.sound.music.time = startTimestamp - Conductor.instance.instrumentalOffset;
|
||||
FlxG.sound.music.pitch = playbackRate;
|
||||
FlxG.sound.music.pause();
|
||||
}
|
||||
|
||||
if (!overrideMusic)
|
||||
{
|
||||
|
@ -852,7 +855,7 @@ class PlayState extends MusicBeatSubState
|
|||
vocals.pause();
|
||||
vocals.time = 0;
|
||||
|
||||
FlxG.sound.music.volume = 1;
|
||||
if (FlxG.sound.music != null) FlxG.sound.music.volume = 1;
|
||||
vocals.volume = 1;
|
||||
vocals.playerVolume = 1;
|
||||
vocals.opponentVolume = 1;
|
||||
|
|
Loading…
Reference in a new issue