mirror of
https://github.com/ninjamuffin99/Funkin.git
synced 2024-11-20 13:53:13 +00:00
fixed pico game over loop from playing a duplicate track (#356)
* fixed pico game over loop from playing a duplicate track that persists in menus * assets submod --------- Co-authored-by: Cameron Taylor <cameron.taylor.ninja@gmail.com>
This commit is contained in:
parent
acde381bf2
commit
f8481a0efe
2
assets
2
assets
|
@ -1 +1 @@
|
||||||
Subproject commit 54f915ea2698a300f06712a5880990f932e6d632
|
Subproject commit b152ad83868ff77307abb24893ddd5f74ed324d7
|
|
@ -338,8 +338,8 @@ class GameOverSubState extends MusicBeatSubState
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
isStarting = false;
|
|
||||||
onComplete = function() {
|
onComplete = function() {
|
||||||
|
isStarting = false;
|
||||||
// We need to force to ensure that the non-starting music plays.
|
// We need to force to ensure that the non-starting music plays.
|
||||||
startDeathMusic(1.0, true);
|
startDeathMusic(1.0, true);
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue