1
0
mirror of https://github.com/ppy/osu.git synced 2026-05-23 13:20:31 +08:00

Play finish in addition to kick, not isolated

This commit is contained in:
Dean Herbert
2019-12-16 18:47:06 +09:00
Unverified
parent 9de6b62fb1
commit 3e0fda58ea
+2 -1
View File
@@ -82,7 +82,8 @@ namespace osu.Game.Rulesets.Mods
{
if (beatIndex % 16 == 0)
finishSample?.Play();
else if (beatIndex % 2 == 0)
if (beatIndex % 2 == 0)
kickSample?.Play();
else if (beatIndex % 2 == 1)
clapSample?.Play();