diff --git a/FNFBot/Program.cs b/FNFBot/Program.cs index 1549c20..62ab5aa 100644 --- a/FNFBot/Program.cs +++ b/FNFBot/Program.cs @@ -82,7 +82,11 @@ public static void Main(string[] args) if (sect.MustHitSection) { foreach (FNFSong.FNFNote n in sect.Notes) - notesToPlay.Add(n); + { + if ((int)n.Type >= 4) + continue; + notesToPlay.Add(n); + } } else { @@ -237,4 +241,4 @@ public static void KeyPress(byte key, byte scan) keybd_event(key, scan, KEYEVENTF_KEYUP, 0); } } -} \ No newline at end of file +}