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)