diff --git a/FNFBot20/Bot/Bot.cs b/FNFBot20/Bot/Bot.cs index 33cf859..cd5ecef 100644 --- a/FNFBot20/Bot/Bot.cs +++ b/FNFBot20/Bot/Bot.cs @@ -159,8 +159,7 @@ public void HandleNote(FNFSong.FNFNote n) bool shouldHold = n.Length > 0; - new Thread(() => - { + switch (n.Type) { case FNFSong.NoteType.Left: @@ -220,8 +219,7 @@ public void HandleNote(FNFSong.FNFNote n) break; } - }).Start(); notesPlayed++; } } -} \ No newline at end of file +}