From 1ce5abc90125a87259953e1a83c8edad51f2f277 Mon Sep 17 00:00:00 2001 From: "Kacper Kostka (aider)" Date: Wed, 2 Apr 2025 12:10:55 +0200 Subject: [PATCH] fix: Add default isWater implementation and water movement penalty --- index.html | 1 + utils.js | 8 ++++++++ 2 files changed, 9 insertions(+) diff --git a/index.html b/index.html index 15e375b..a696942 100644 --- a/index.html +++ b/index.html @@ -210,6 +210,7 @@ + diff --git a/utils.js b/utils.js index 8610f32..774fd2a 100644 --- a/utils.js +++ b/utils.js @@ -46,6 +46,14 @@ function randInt(min, max) { /********************************************************************** * MOVE & DISTANCE **********************************************************************/ +// Default implementation of isWater - will be overridden by terrain.js +function isWater(x, y) { + return false; // Default to no water +} + +// Water movement penalty constant +const WATER_MOVEMENT_PENALTY = 0.5; + function moveToward(obj, tx, ty, speed=0.4) { let dx = tx - obj.x; let dy = ty - obj.y;