From 1d3882e954ca0b189a7dd327b7a761aee3c51000 Mon Sep 17 00:00:00 2001 From: Pabloader Date: Sat, 2 May 2026 18:39:22 +0000 Subject: [PATCH] Remove log --- src/games/text-dungeon/index.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/src/games/text-dungeon/index.ts b/src/games/text-dungeon/index.ts index 77b944e..110c562 100644 --- a/src/games/text-dungeon/index.ts +++ b/src/games/text-dungeon/index.ts @@ -123,7 +123,6 @@ class GameSystem extends System { if (moved) { const activatedDoor = room.getActivatedDoor(newX, newY)?.get(Door); - console.log({ activatedDoor }); if (activatedDoor) { const shouldTravel = ![Direction.UP, Direction.DOWN].includes(activatedDoor.direction) || isSpacePressed;