mirror of
https://github.com/ppy/osu.git
synced 2025-01-21 08:52:54 +08:00
Fix spinner bonus ticks samples not actually playing
This commit is contained in:
parent
4dd40542d5
commit
35ad409da6
@ -21,7 +21,8 @@ namespace osu.Game.Rulesets.Osu.Objects.Drawables
|
|||||||
{
|
{
|
||||||
hasBonusPoints = value;
|
hasBonusPoints = value;
|
||||||
|
|
||||||
Samples.Volume.Value = ((OsuSpinnerTickJudgement)Result.Judgement).HasBonusPoints ? 1 : 0;
|
((OsuSpinnerTickJudgement)Result.Judgement).HasBonusPoints = value;
|
||||||
|
Samples.Volume.Value = value ? 1 : 0;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user