From d2bf8f3f99105090dd655e4f707a240318e8dede Mon Sep 17 00:00:00 2001 From: Matt Walsh Date: Wed, 8 Apr 2026 23:01:42 -0500 Subject: [PATCH] fix radar tiles --- server/scripts/modules/radar-tiles.mjs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/server/scripts/modules/radar-tiles.mjs b/server/scripts/modules/radar-tiles.mjs index 7872651..222beaa 100644 --- a/server/scripts/modules/radar-tiles.mjs +++ b/server/scripts/modules/radar-tiles.mjs @@ -51,8 +51,8 @@ const setTiles = (data) => { const secondRow = tileShift.y + TILE_SIZE.y > RADAR_FINAL_SIZE().height; const usedTiles = [ true, - tileShift.x + TILE_SIZE.x > RADAR_FINAL_SIZE.width, - tileShift.x + (TILE_SIZE.x * 2) > RADAR_FINAL_SIZE.width, + tileShift.x + TILE_SIZE.x > RADAR_FINAL_SIZE().width, + tileShift.x + (TILE_SIZE.x * 2) > RADAR_FINAL_SIZE().width, secondRow, ]; // second row is a copy of the first row when in use