Skip to content

Commit

Permalink
Fix not being able to copy hold notes
Browse files Browse the repository at this point in the history
  • Loading branch information
LumpBloom7 committed Nov 1, 2023
1 parent 85c226f commit 4b18c31
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions osu.Game.Rulesets.Sentakki/Objects/Hold.cs
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,9 @@ public IList<IList<HitSampleInfo>> NodeSamples
get => nodeSamples;
set
{
if (!value.Any())
return;

Samples = value.Last();
nodeSamples = value;
}
Expand Down

0 comments on commit 4b18c31

Please sign in to comment.