Skip to content
This repository was archived by the owner on Mar 31, 2025. It is now read-only.

Commit a6b3e72

Browse files
committed
null checking to fix ghost tap disabled
1 parent 9d7ca18 commit a6b3e72

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

source/options/NotesSubState.hx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ class NotesSubState extends MusicBeatSubstate
166166

167167
function updateTip()
168168
{
169-
tipTxt.text = 'Hold ' + (!controls.controllerMode ? 'Shift' : 'Left Shoulder Button') + ' + Press RELOAD to fully reset the selected Note.';
169+
tipTxt.text = 'Hold ' + (!controls.controllerMode ? 'Shift' : 'Left Shoulder Button') + ' + Press RESET key to fully reset the selected Note.';
170170
}
171171

172172
var _storedColor:FlxColor;

source/states/PlayState.hx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2850,7 +2850,7 @@ class PlayState extends MusicBeatState
28502850
var char:Character = boyfriend;
28512851
if((note != null && note.gfNote) || (SONG.notes[curSection] != null && SONG.notes[curSection].gfSection)) char = gf;
28522852

2853-
if(char != null && !note.noMissAnimation && char.hasMissAnimations)
2853+
if(char != null && (note == null || !note.noMissAnimation) && char.hasMissAnimations)
28542854
{
28552855
var suffix:String = '';
28562856
if(note != null) suffix = note.animSuffix;

0 commit comments

Comments
 (0)