mirror of
https://github.com/osukey/osukey.git
synced 2025-08-04 23:24:04 +09:00
Fix spinner bonus ticks samples not actually playing
This commit is contained in:
@ -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;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user