Fix rim flying hits changing colour

This commit is contained in:
Bartłomiej Dach 2020-09-26 20:59:55 +02:00
parent 0563a488f4
commit d61a8327da

View File

@ -27,5 +27,11 @@ namespace osu.Game.Rulesets.Taiko.Objects.Drawables
base.LoadComplete();
ApplyResult(r => r.Type = r.Judgement.MaxResult);
}
protected override void LoadSamples()
{
// block base call - flying hits are not supposed to play samples
// the base call could overwrite the type of this hit
}
}
}