From 1f75d363b3f8da53f0bbb5c2636ce171e113006e Mon Sep 17 00:00:00 2001 From: Kade M Date: Wed, 7 Jul 2021 16:01:26 -0700 Subject: [PATCH] fix ghost tapping not working --- source/PlayState.hx | 3 +++ 1 file changed, 3 insertions(+) diff --git a/source/PlayState.hx b/source/PlayState.hx index 195d32f..5123167 100644 --- a/source/PlayState.hx +++ b/source/PlayState.hx @@ -1468,6 +1468,9 @@ class PlayState extends MusicBeatState ana.hitJudge = Ratings.CalculateRating(noteDiff, Math.floor((PlayStateChangeables.safeFrames / 60) * 1000)); ana.nearestNote = [coolNote.strumTime,coolNote.noteData,coolNote.sustainLength]; } + else if (!FlxG.save.data.ghost) + noteMiss(data,null); + }