mirror of
https://github.com/osukey/osukey.git
synced 2025-08-08 00:53:56 +09:00
Add missing braces
This commit is contained in:
@ -239,12 +239,14 @@ namespace osu.Game.Rulesets.Osu.Edit
|
|||||||
getSurroundingQuad(hitObjects.SelectMany(h =>
|
getSurroundingQuad(hitObjects.SelectMany(h =>
|
||||||
{
|
{
|
||||||
if (h is IHasPath path)
|
if (h is IHasPath path)
|
||||||
|
{
|
||||||
return new[]
|
return new[]
|
||||||
{
|
{
|
||||||
h.Position,
|
h.Position,
|
||||||
// can't use EndPosition for reverse slider cases.
|
// can't use EndPosition for reverse slider cases.
|
||||||
h.Position + path.Path.PositionAt(1)
|
h.Position + path.Path.PositionAt(1)
|
||||||
};
|
};
|
||||||
|
}
|
||||||
|
|
||||||
return new[] { h.Position };
|
return new[] { h.Position };
|
||||||
}));
|
}));
|
||||||
|
Reference in New Issue
Block a user