From 07bd2e44cd7f996cc0f2ec6ecc0426899cb944d5 Mon Sep 17 00:00:00 2001 From: EliteMasterEric Date: Wed, 3 Jan 2024 20:12:46 -0500 Subject: [PATCH] Fix a funny bug when restarting after game over --- source/funkin/play/GameOverSubState.hx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/funkin/play/GameOverSubState.hx b/source/funkin/play/GameOverSubState.hx index 153fcc7ac..dadd5a3d9 100644 --- a/source/funkin/play/GameOverSubState.hx +++ b/source/funkin/play/GameOverSubState.hx @@ -289,7 +289,7 @@ class GameOverSubState extends MusicBeatSubState { gameOverMusic.loadEmbedded(musicPath); gameOverMusic.volume = startingVolume; - gameOverMusic.looped = true; + gameOverMusic.looped = !isEnding; gameOverMusic.play(); } }