Merge remote-tracking branch 'upstream/master' into patch-3

This commit is contained in:
Lucky56 2021-06-28 00:58:23 +02:00
commit 708215b362
No known key found for this signature in database
GPG Key ID: 46F24126D7075560
4 changed files with 8 additions and 14 deletions

View File

@ -9,7 +9,7 @@ install:
- cd /home/appveyor
- sudo add-apt-repository ppa:haxe/releases -y
- sudo apt update
- sudo apt install neko tar gcc-multilib g++-multilib -y
- sudo apt install neko tar gcc-7 g++-7 gcc-7-multilib g++-7-multilib -y
- wget https://github.com/HaxeFoundation/haxe/releases/download/4.1.5/haxe-4.1.5-linux64.tar.gz
- mkdir $HAXE_INSTALLDIR
- tar -xf haxe-4.1.5-linux64.tar.gz -C $HAXE_INSTALLDIR

View File

@ -37,8 +37,9 @@ install:
- haxelib run lime rebuild extension-webm windows
- haxelib install linc_luajit
- haxelib install actuate
- haxelib git extension-webm https://github.com/KadeDev/extension-webm
- lime rebuild extension-webm windows
#- haxelib git extension-webm https://github.com/KadeDev/extension-webm
#- haxelib run lime rebuild extension-webm windows
#why here's dublicate lmao
- haxelib list
# No tests idk lol

View File

@ -58,6 +58,8 @@ class FreeplayState extends MusicBeatState
{
var initSonglist = CoolUtil.coolTextFile(Paths.txt('freeplaySonglist'));
//var diffList = "";
for (i in 0...initSonglist.length)
{
var data:Array<String> = initSonglist[i].split(':');
@ -80,6 +82,8 @@ class FreeplayState extends MusicBeatState
}
}
//trace("\n" + diffList);
/*
if (FlxG.sound.music != null)
{

View File

@ -1631,17 +1631,6 @@ class PlayState extends MusicBeatState
swagNote.sustainLength = songNotes[2];
swagNote.scrollFactor.set(0, 0);
var addNote = false;
for (i in unspawnNotes)
if (i.strumTime == daStrumTime && i.noteData == daNoteData)
addNote = true;
if (addNote)
{
trace('stacked note, thats cringe');
continue;
}
var susLength:Float = swagNote.sustainLength;