Modify comment

This commit is contained in:
ekrctb 2021-07-09 15:13:54 +09:00
parent 7e14679606
commit 995ef953c6
1 changed files with 2 additions and 2 deletions

View File

@ -33,7 +33,7 @@ public override bool HandleMovement(MoveSelectionEvent<HitObject> moveEvent)
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;
}
@ -96,7 +96,7 @@ private IEnumerable<float> getOriginalPositions(HitObject hitObject)
case JuiceStream juiceStream:
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))
yield return nested.OriginalX;
}