mirror of
https://github.com/ninjamuffin99/Funkin.git
synced 2025-02-10 21:43:06 +00:00
build script fixin
This commit is contained in:
parent
0062631472
commit
7d925ae0ec
|
@ -6,6 +6,6 @@ echo BUILDING GAME
|
||||||
lime build windows -final
|
lime build windows -final
|
||||||
echo UPLOADING TO ITCH
|
echo UPLOADING TO ITCH
|
||||||
butler push ./export/release/windows/bin ninja-muffin24/friday-night-funkin:windows
|
butler push ./export/release/windows/bin ninja-muffin24/friday-night-funkin:windows
|
||||||
butler status ninja-muffin24/ld47:windows
|
butler status ninja-muffin24/friday-night-funkin:windows
|
||||||
echo ITCH SHIT UPDATED LMAOOOOO
|
echo ITCH SHIT UPDATED LMAOOOOO
|
||||||
pause
|
pause
|
|
@ -415,7 +415,10 @@ class PlayState extends FlxTransitionableState
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
Conductor.songPosition = FlxG.sound.music.time;
|
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)
|
if (playerTurn == (sectionLengths[curSection] * 8) - 1 && !sectionScored)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue