From 5f45b3b4dc51ff56a178120c4ab50b4d4c900d181456946c760da1a9e1616a92 Mon Sep 17 00:00:00 2001 From: aslan Date: Fri, 23 Jan 2026 08:57:00 -0500 Subject: [PATCH] Fix location share --- src/services/game/location.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/services/game/location.ts b/src/services/game/location.ts index dbb7939..d1df523 100644 --- a/src/services/game/location.ts +++ b/src/services/game/location.ts @@ -78,6 +78,8 @@ const hasLocation = ( const entitiesShareLocation = (entityA: IEntity, entityB: IEntity): boolean => { const locationA = getLocation(entityA.location); const locationB = getLocation(entityB.location); + console.log(locationA.id); + console.log(locationB.id); return locationA.id === locationB.id; };