mirror of
https://github.com/ppy/osu.git
synced 2024-12-17 01:32:55 +08:00
Fix more post-merge errors.
This commit is contained in:
parent
90c441f614
commit
a75a2e1794
@ -5,18 +5,18 @@ namespace osu.Game.Modes.Taiko.Judgements
|
||||
{
|
||||
public class TaikoDrumRollTickJudgementInfo : TaikoJudgementInfo
|
||||
{
|
||||
protected override int ScoreToInt(TaikoScoreResult result)
|
||||
protected override int NumericResultForScore(TaikoHitResult result)
|
||||
{
|
||||
switch (result)
|
||||
{
|
||||
default:
|
||||
return 0;
|
||||
case TaikoScoreResult.Great:
|
||||
case TaikoHitResult.Great:
|
||||
return 200;
|
||||
}
|
||||
}
|
||||
|
||||
protected override int AccuracyScoreToInt(TaikoScoreResult result)
|
||||
protected override int NumericResultForAccuracy(TaikoHitResult result)
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user