Skip to content

Commit

Permalink
always double check your code before releasing an update
Browse files Browse the repository at this point in the history
fixed a bug where ratings wouldnt even be counted
  • Loading branch information
JordanSantiagoYT committed Nov 24, 2023
1 parent 53112b5 commit 316a0c5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/PlayState.hx
Original file line number Diff line number Diff line change
Expand Up @@ -7150,7 +7150,7 @@ if (ClientPrefs.showNPS) {

if (Std.string(daRating) == 'sick' && ClientPrefs.noMarvJudge) maxScore -= 150 * Std.int(polyphony); //if you enable marvelous judges and hit a sick, lower the max score by 150 points. otherwise it won't make sense

if (ClientPrefs.communityGameBot || ClientPrefs.communityGameBot)
if (cpuControlled && ClientPrefs.communityGameBot || cpuControlled && !ClientPrefs.lessBotLag || !cpuControlled)
{
if (!ClientPrefs.complexAccuracy) totalNotesHit += daRating.ratingMod;
if (ClientPrefs.complexAccuracy) totalNotesHit += wife;
Expand Down

0 comments on commit 316a0c5

Please sign in to comment.