Merge pull request #783 from FunkinCrew/nothyper474/chart-selection

[PUBLIC PR] Chart Editor: Fi bug where selecting area left of the chart would select the player's left notes
This commit is contained in:
Cameron Taylor 2024-09-22 13:30:32 -04:00 committed by GitHub
commit 15bce04a50
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 3 additions and 3 deletions

View file

@ -103,7 +103,7 @@ class NoteScriptEvent extends ScriptEvent
public var comboCount(default, null):Int;
/**
* Whether to play the record scratch sound (if this eventn type is `NOTE_MISS`).
* Whether to play the record scratch sound (if this event type is `NOTE_MISS`).
*/
public var playSound(default, default):Bool;

View file

@ -4251,8 +4251,8 @@ class ChartEditorState extends UIState // UIState derives from MusicBeatState
}
else
{
// Minimum of 0.
return 0;
// Minimum of -1.
return -1;
}
});