From 49134f0e4427bff5d9013f1d33f26f54d09ab524 Mon Sep 17 00:00:00 2001 From: Julia Ryan Date: Tue, 16 Sep 2025 11:05:41 -0700 Subject: [PATCH] add missing corner --- src/gamestate.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/gamestate.rs b/src/gamestate.rs index 7015743..25e6d08 100644 --- a/src/gamestate.rs +++ b/src/gamestate.rs @@ -222,7 +222,7 @@ impl PlayerIdentifier { pub const fn color(&self) -> &str { match self { - PlayerIdentifier::P1 => "\x1b[38;2;0;0;255m", + PlayerIdentifier::P1 => "\x1b[38;2;0;140;247m", PlayerIdentifier::P2 => "\x1b[38;2;255;0;0m", } } @@ -470,6 +470,7 @@ impl Display for GameState { )?; write!(f, "──")?; } + write!(f, "╯")?; Ok(()) } }