Skip to content

Commit

Permalink
Fix scoring
Browse files Browse the repository at this point in the history
need to replace this with good and great results instead
  • Loading branch information
naoei committed Mar 9, 2020
1 parent df134be commit 2615fda
Showing 1 changed file with 20 additions and 2 deletions.
22 changes: 20 additions & 2 deletions tau/osu.Game.Rulesets.tau/Judgements/TauJudgement.cs
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,30 @@ protected override int NumericResultFor(HitResult result)
default:
return 0;

case HitResult.Good:
case HitResult.Great:
return 100;

case HitResult.Great:
case HitResult.Perfect:
return 300;
}
}

protected override double HealthIncreaseFor(HitResult result)
{
switch (result)
{
default:
return 0;

case HitResult.Miss:
return -0.02;

case HitResult.Great:
return 0.01;

case HitResult.Perfect:
return 0.02;
}
}
}
}

0 comments on commit 2615fda

Please sign in to comment.