diff --git a/appveyor-linux.yml b/appveyor-linux.yml index dc06bb0..6dfee0f 100644 --- a/appveyor-linux.yml +++ b/appveyor-linux.yml @@ -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 diff --git a/appveyor-windows.yml b/appveyor-windows.yml index eaf9b74..ae69bca 100644 --- a/appveyor-windows.yml +++ b/appveyor-windows.yml @@ -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 diff --git a/source/FreeplayState.hx b/source/FreeplayState.hx index 20db69e..15813fb 100644 --- a/source/FreeplayState.hx +++ b/source/FreeplayState.hx @@ -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 = initSonglist[i].split(':'); @@ -80,6 +82,8 @@ class FreeplayState extends MusicBeatState } } + //trace("\n" + diffList); + /* if (FlxG.sound.music != null) { diff --git a/source/PlayState.hx b/source/PlayState.hx index 89d77ff..7a7b443 100644 --- a/source/PlayState.hx +++ b/source/PlayState.hx @@ -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;