diff --git a/osu.Game.Rulesets.Mania/Mods/ManiaModInvert.cs b/osu.Game.Rulesets.Mania/Mods/ManiaModInvert.cs index ef9154d180..d1912e3690 100644 --- a/osu.Game.Rulesets.Mania/Mods/ManiaModInvert.cs +++ b/osu.Game.Rulesets.Mania/Mods/ManiaModInvert.cs @@ -42,8 +42,7 @@ namespace osu.Game.Rulesets.Mania.Mods var locations = column.OfType().Select(n => (startTime: n.StartTime, samples: n.Samples)) .Concat(column.OfType().SelectMany(h => new[] { - (startTime: h.StartTime, samples: h.GetNodeSamples(0)), - (startTime: h.EndTime, samples: h.GetNodeSamples(1)) + (startTime: h.StartTime, samples: h.GetNodeSamples(0)) })) .OrderBy(h => h.startTime).ToList();