mirror of
https://github.com/FunkinCrew/Funkin.git
synced 2025-03-25 06:10:16 -04:00
build script fixin
This commit is contained in:
parent
001dccb50a
commit
132782b777
1 changed files with 4 additions and 1 deletions
|
@ -415,7 +415,10 @@ class PlayState extends FlxTransitionableState
|
|||
}
|
||||
else
|
||||
Conductor.songPosition = FlxG.sound.music.time;
|
||||
var playerTurn:Int = totalBeats % (sectionLengths[curSection] * 8);
|
||||
|
||||
var playerTurn:Int = 0;
|
||||
if (sectionLengths.length > curSection)
|
||||
playerTurn = totalBeats % (sectionLengths[curSection] * 8);
|
||||
|
||||
if (playerTurn == (sectionLengths[curSection] * 8) - 1 && !sectionScored)
|
||||
{
|
||||
|
|
Loading…
Add table
Reference in a new issue