Refine comment in computeFixedTimeSpeed method for clarity

This commit is contained in:
FloPinguin
2026-04-26 00:48:53 +02:00
parent 6379cc4fb5
commit 47acd301c4
+1 -1
View File
@@ -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;