1
0
Fork 0
mirror of https://github.com/ninjamuffin99/Funkin.git synced 2024-11-25 08:13:45 +00:00

Merge pull request #8 from ninjamuffin99/george_fix

fix crash on week 1
This commit is contained in:
Cameron Taylor 2022-02-04 16:10:30 -05:00 committed by GitHub
commit 5f75520b67

View file

@ -3118,10 +3118,13 @@ class PlayState extends MusicBeatState
iconP1.updateHitbox();
iconP2.updateHitbox();
var song = SongLoad.getSong();
var step = Math.floor(curStep / 16);
if (curBeat % 8 == 7
&& SongLoad.getSong()[Math.floor(curStep / 16)].mustHitSection
&& song[step].mustHitSection
&& combo > 5
&& !SongLoad.getSong()[Math.floor(curStep / 16) + 1].mustHitSection)
&& song.length > step + 1// GK: this fixes an error on week 1 where song[step + 1] was null
&& !song[step + 1].mustHitSection)
{
var animShit:ComboCounter = new ComboCounter(-100, 300, combo);
animShit.scrollFactor.set(0.6, 0.6);