Avoid using a miss judgement

This commit is contained in:
Dean Herbert
2020-03-26 19:51:02 +09:00
parent 6555ab6ede
commit f80efd10c2
2 changed files with 10 additions and 2 deletions

View File

@ -344,7 +344,7 @@ namespace osu.Game.Rulesets.Objects.Drawables
/// Plays all the hit sounds for this <see cref="DrawableHitObject"/>.
/// This is invoked automatically when this <see cref="DrawableHitObject"/> is hit.
/// </summary>
public void PlaySamples() => Samples?.Play();
public virtual void PlaySamples() => Samples?.Play();
protected override void Update()
{