From c557c2570b1436ce3fc35c9509ebd1b97c3e14f2 Mon Sep 17 00:00:00 2001 From: TcePrepK <56453014+TcePrepK@users.noreply.github.com> Date: Thu, 1 Jul 2021 23:15:30 +0300 Subject: [PATCH] Fixed comment --- src/js/game/hud/parts/wires_overlay.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/js/game/hud/parts/wires_overlay.js b/src/js/game/hud/parts/wires_overlay.js index 256abf19..15a7154f 100644 --- a/src/js/game/hud/parts/wires_overlay.js +++ b/src/js/game/hud/parts/wires_overlay.js @@ -127,7 +127,7 @@ export class HUDWiresOverlay extends BaseHUDPart { ); const length = mouseTilePos.sub(valueSpritePos).length(); - // If it is closer than 8 we can copy that value + // If it is closer than current minimum length we can copy that value if (length < minLength) { minLength = length; value = slot.value;