Skip to content

Commit

Permalink
fix stupid lane underlay thing on videos
Browse files Browse the repository at this point in the history
  • Loading branch information
TheRealJake12 committed Jan 3, 2024
1 parent ebc495c commit 22f2021
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions source/PlayState.hx
Original file line number Diff line number Diff line change
Expand Up @@ -1243,7 +1243,6 @@ class PlayState extends MusicBeatState
case 'thorns':
schoolIntro(doof);
case 'ugh', 'guns', 'stress':
removeStaticArrows();
#if VIDEOS
playCutscene('${SONG.songId.toLowerCase()}Cutscene.mp4', false);
#end
Expand Down Expand Up @@ -6784,6 +6783,7 @@ class PlayState extends MusicBeatState
inst.stop();
cutscene.onEndReached.add(function()
{
inCutscene = false;
if (atend == true)
{
if (storyPlaylist.length <= 0)
Expand All @@ -6795,7 +6795,12 @@ class PlayState extends MusicBeatState
}
}
else
startCountdown();
{
createTimer(0.5, function(timer)
{
startCountdown();
});
}

cutscene.dispose();
});
Expand Down

0 comments on commit 22f2021

Please sign in to comment.