From 2377d4fa7113069b811193d83c9cab24972db1f8 Mon Sep 17 00:00:00 2001 From: OpenClaw Engineer Date: Sat, 7 Mar 2026 15:11:04 -0600 Subject: [PATCH] Reduce Easy-mode water gap widths significantly --- js/game.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/game.js b/js/game.js index 1ab6f1d..5ea28cd 100644 --- a/js/game.js +++ b/js/game.js @@ -149,7 +149,7 @@ function getMaxHearts(accessMode) { function getWaterGaps(difficulty) { if (difficulty !== 'easy') return baseWaterGaps; - return baseWaterGaps.map((gap) => ({ ...gap, width: Math.round(gap.width * 0.74) })); + return baseWaterGaps.map((gap) => ({ ...gap, width: Math.round(gap.width * 0.5) })); } function getNextDifficulty(difficulty) {