From 47acd301c457d3eb59736159abb86c39cf224940 Mon Sep 17 00:00:00 2001 From: FloPinguin <25036848+FloPinguin@users.noreply.github.com> Date: Sun, 26 Apr 2026 00:48:53 +0200 Subject: [PATCH] Refine comment in computeFixedTimeSpeed method for clarity --- src/core/execution/MIRVExecution.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/execution/MIRVExecution.ts b/src/core/execution/MIRVExecution.ts index 7060876be..979d4cb25 100644 --- a/src/core/execution/MIRVExecution.ts +++ b/src/core/execution/MIRVExecution.ts @@ -121,7 +121,7 @@ export class MirvExecution implements Execution { private computeFixedTimeSpeed(): number { // Measure the actual parabolic path length, then divide by the desired // tick count. A temporary fine-grained pathfinder gives a precise - // length estimate (cached points are spaced ~1 px apart). + // length estimate. const measure = UniversalPathFinding.Parabola(this.mg, { increment: 1 }); const path = measure.findPath(this.spawnTile, this.separateDst) ?? []; let length = 0;