From 6196046767ccca6ce10ea2c6b8b4539b3cace9f2 Mon Sep 17 00:00:00 2001 From: KadeDeveloper Date: Wed, 11 Aug 2021 18:58:25 -0700 Subject: [PATCH] agag --- source/PlayState.hx | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/source/PlayState.hx b/source/PlayState.hx index 9b0a432..69ced26 100644 --- a/source/PlayState.hx +++ b/source/PlayState.hx @@ -3188,7 +3188,9 @@ class PlayState extends MusicBeatState health -= 0.20; vocals.volume = 0; if (theFunne && !daNote.isSustainNote) + { noteMiss(daNote.noteData, daNote); + } if (daNote.isParent) { health -= 0.30; // give a health punishment for failing a LN @@ -3226,7 +3228,15 @@ class PlayState extends MusicBeatState health -= 0.20; vocals.volume = 0; if (theFunne && !daNote.isSustainNote) - noteMiss(daNote.noteData, daNote); + { + if (PlayStateChangeables.botPlay) + { + daNote.rating = "bad"; + goodNoteHit(daNote); + } + else + noteMiss(daNote.noteData, daNote); + } if (daNote.isParent) {