From ff6c01c18d2d0cfe7ae38f0cb97a57d075201c16 Mon Sep 17 00:00:00 2001 From: Lotusotho <69006987+lotusotho@users.noreply.github.com> Date: Sun, 6 Dec 2020 14:58:32 +0100 Subject: [PATCH] Fixed loop problem at the end of Boopeebo --- source/PlayState.hx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/source/PlayState.hx b/source/PlayState.hx index 2c5c6da81..4a9043c11 100644 --- a/source/PlayState.hx +++ b/source/PlayState.hx @@ -731,7 +731,8 @@ class PlayState extends MusicBeatState { switch (totalBeats) { - case 127: + case 128, 129, 130: + vocals.volume = 0; // FlxG.sound.music.stop(); // curLevel = 'Fresh'; // FlxG.switchState(new PlayState());