From b8c7dcc196edaf75ff3adc224e9d5a5f814f0e58 Mon Sep 17 00:00:00 2001 From: griffi-gh Date: Thu, 25 Apr 2024 17:52:42 +0200 Subject: [PATCH] revert back to yellow --- kubi/src/ui/chat_ui.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kubi/src/ui/chat_ui.rs b/kubi/src/ui/chat_ui.rs index e13ffb6..d419ed6 100644 --- a/kubi/src/ui/chat_ui.rs +++ b/kubi/src/ui/chat_ui.rs @@ -22,7 +22,7 @@ pub fn render_chat( (format!("{username} ({id}) joined the game"), color::YELLOW) } ChatMessage::PlayerLeave { username, id } => { - (format!("{username} ({id}) left the game"), color::RED) + (format!("{username} ({id}) left the game"), color::YELLOW) } ChatMessage::System(message) => { (message.clone(), color::WHITE)