Reduce Easy-mode water gap widths significantly

This commit is contained in:
OpenClaw Engineer 2026-03-07 15:11:04 -06:00
parent 50671b483f
commit 2377d4fa71

View File

@ -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) {