We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1b403b2 commit 9bd9490Copy full SHA for 9bd9490
source/funkin/backend/utils/FunkinParentDisabler.hx
@@ -38,7 +38,7 @@ class FunkinParentDisabler extends FlxBasic {
38
for(c in __cameras) c.paused = true;
39
40
// sounds
41
- __sounds = [for(s in FlxG.sound.list) if (s.playing) s];
+ __sounds = [for(s in FlxG.sound.list) if (s.playing && !s.persist) s];
42
for(s in __sounds) s.pause();
43
}
44
@@ -71,4 +71,4 @@ class FunkinParentDisabler extends FlxBasic {
71
for(s in __sounds) s.play();
72
73
74
-}
+}
0 commit comments