Skip to content

Commit

Permalink
yeah
Browse files Browse the repository at this point in the history
improved the compact number code
Fixed Double Note Ghosts returning a Null Object Reference in some occasions
Improved performance with rating popups
  • Loading branch information
JordanSantiagoYT committed Nov 19, 2023
1 parent ed28aef commit 3238ab5
Show file tree
Hide file tree
Showing 2 changed files with 310 additions and 356 deletions.
3 changes: 2 additions & 1 deletion source/Conductor.hx
Original file line number Diff line number Diff line change
Expand Up @@ -53,8 +53,9 @@ class Conductor
Conductor.timeScale = Conductor.safeZoneOffset / 180;
}

public static function judgeNote(note:Note, diff:Float=0):Rating // die
public static function judgeNote(note:Note, diff:Float=0, ?botplay:Bool = false):Rating // die
{
if (botplay) return PlayState.instance.ratingsData[0];
var data:Array<Rating> = PlayState.instance.ratingsData; //shortening cuz fuck u
for(i in 0...data.length-1) //skips last window (Shit)
{
Expand Down
Loading

0 comments on commit 3238ab5

Please sign in to comment.