From 7fc65b49c26c8035c2fd4e0b52bdad41cec569d2 Mon Sep 17 00:00:00 2001 From: Nyeogmi Date: Fri, 22 Sep 2023 21:49:39 -0700 Subject: [PATCH] Render walls at half height for now --- lib/game/sitemode/camera.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/game/sitemode/camera.dart b/lib/game/sitemode/camera.dart index 680b2b5..61ee6e3 100644 --- a/lib/game/sitemode/camera.dart +++ b/lib/game/sitemode/camera.dart @@ -114,7 +114,7 @@ extension CameraParts on SiteMode { cursorAbove.big().fg(colorExit).puts("X"); case LevelTile.wall: cursorAbove.fg(colorWall).puts("██"); - cursorBelow.fg(colorWallInner).puts("░░"); + cursorBelow.small().fg(colorWallInner).puts("░░"); case LevelTile.closedDoor: cursorAbove.big().fg(colorDoor).puts("+"); }