From 4dab1ac7d551a8f4efccc5fbf5ecacf013009c82 Mon Sep 17 00:00:00 2001 From: Brian Fertig Date: Thu, 30 Jul 2026 20:01:21 -0600 Subject: [PATCH] Elongate goos for the pipe. --- src/games/gootower/GooTowerGame.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/games/gootower/GooTowerGame.js b/src/games/gootower/GooTowerGame.js index e2f28ae..a5ffeda 100644 --- a/src/games/gootower/GooTowerGame.js +++ b/src/games/gootower/GooTowerGame.js @@ -844,9 +844,9 @@ export default class GooTowerGame extends Phaser.Scene { const pdx = pipe.x - x; const pdy = pipe.y - y; const pdist = Math.hypot(pdx, pdy); - const PULL_RANGE = b.r * 7; + const PULL_RANGE = b.r * 16; if (pdist < PULL_RANGE) { - const pullAmt = Math.pow(1 - pdist / PULL_RANGE, 1.6); + const pullAmt = Math.pow(1 - pdist / PULL_RANGE, 1.3); const inv = pdist > 0.001 ? 1 / pdist : 0; const pullX = pdx * inv; const pullY = pdy * inv;