1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 03:27:24 +08:00

Update TaikoScoreProcessor.cs

This commit is contained in:
Ivan Pavluk 2018-11-29 09:45:57 +07:00 committed by GitHub
parent 00a243f7f2
commit ce1e6d93e4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -80,11 +80,10 @@ namespace osu.Game.Rulesets.Taiko.Scoring
{
base.ApplyResult(result);
bool isTick = false;
bool isRoll = false;
bool isStrong = false;
bool isTick = result.Judgement is TaikoDrumRollTickJudgement;
isTick = result.Judgement is TaikoDrumRollTickJudgement;
if (!isTick)
{
isRoll = result.Judgement is TaikoDrumRollJudgement;