mirror of
https://github.com/ppy/osu.git
synced 2026-05-22 04:09:54 +08:00
Oops, apparently normal hit sound should always be added.
This commit is contained in:
@@ -226,15 +226,12 @@ namespace osu.Game.Rulesets.Objects.Legacy
|
||||
{
|
||||
var soundTypes = new List<SampleInfo>();
|
||||
|
||||
if ((type & LegacySoundType.Normal) > 0)
|
||||
soundTypes.Add(new SampleInfo
|
||||
{
|
||||
soundTypes.Add(new SampleInfo
|
||||
{
|
||||
Bank = bankInfo.Normal,
|
||||
Name = SampleInfo.HIT_NORMAL,
|
||||
Volume = bankInfo.Volume
|
||||
});
|
||||
}
|
||||
Bank = bankInfo.Normal,
|
||||
Name = SampleInfo.HIT_NORMAL,
|
||||
Volume = bankInfo.Volume
|
||||
});
|
||||
|
||||
if ((type & LegacySoundType.Finish) > 0)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user