Modify comment

This commit is contained in:
ekrctb 2021-07-09 15:13:54 +09:00
parent 7e14679606
commit 995ef953c6

View File

@ -33,7 +33,7 @@ namespace osu.Game.Rulesets.Catch.Edit
if (deltaX == 0) if (deltaX == 0)
{ {
// Returns true: even there is no positional change, there may be a time change. // Even there is no positional change, there may be a time change.
return true; return true;
} }
@ -96,7 +96,7 @@ namespace osu.Game.Rulesets.Catch.Edit
case JuiceStream juiceStream: case JuiceStream juiceStream:
foreach (var nested in juiceStream.NestedHitObjects.OfType<CatchHitObject>()) foreach (var nested in juiceStream.NestedHitObjects.OfType<CatchHitObject>())
{ {
// Exclude tiny droplets: even if `OriginalX` is outside the playfield, it can be moved inside the playfield after the random offset application. // Even if `OriginalX` is outside the playfield, tiny droplets can be moved inside the playfield after the random offset application.
if (!(nested is TinyDroplet)) if (!(nested is TinyDroplet))
yield return nested.OriginalX; yield return nested.OriginalX;
} }