Skip to content

Commit

Permalink
Remove fallback logic when custom sample set is specified
Browse files Browse the repository at this point in the history
  • Loading branch information
peppy committed Nov 13, 2024
1 parent 5ce230b commit 338a4fb
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions osu.Game/Audio/HitSampleInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -84,10 +84,12 @@ public virtual IEnumerable<string> LookupNames
{
if (!string.IsNullOrEmpty(Suffix))
yield return $"Gameplay/{Bank}-{Name}{Suffix}";
else
{
yield return $"Gameplay/{Bank}-{Name}";

yield return $"Gameplay/{Bank}-{Name}";

yield return $"Gameplay/{Name}";
yield return $"Gameplay/{Name}";
}
}
}

Expand Down

0 comments on commit 338a4fb

Please sign in to comment.