Skip to content

Commit 5686d64

Browse files
authored
Merge pull request #282 from LumpBloom7/Fix-crafted-air-star-sheet
Provide NodeSamples to air star sheet in crafted maps
2 parents 55fe673 + 6f22c48 commit 5686d64

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

osu.Game.Rulesets.Rush/Beatmaps/RushCraftedBeatmapConverter.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ protected override IEnumerable<RushHitObject> ConvertHitObject(HitObject origina
105105
{
106106
StartTime = original.StartTime,
107107
EndTime = original.GetEndTime(),
108-
Samples = original.Samples,
108+
NodeSamples = (original as IHasRepeats)?.NodeSamples ?? new List<IList<HitSampleInfo>> { original.Samples },
109109
Lane = LanedHitLane.Air
110110
};
111111
}

0 commit comments

Comments
 (0)