From 94ff76ebcbc595906440be7263c29198ee5b4b87 Mon Sep 17 00:00:00 2001 From: Joshua Higgins Date: Wed, 3 Dec 2025 17:53:16 -0500 Subject: [PATCH] fix: incorrect header --- src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.rs b/src/main.rs index 6c8691a..9dd7892 100644 --- a/src/main.rs +++ b/src/main.rs @@ -515,7 +515,7 @@ async fn handle_connection( else if text == "PLAYER:LIST" { let clients_guard = clients.read().await; - let mut to_send = "GAME:LIST:".to_string(); + let mut to_send = "PLAYER:LIST:".to_string(); for client_guard in clients_guard.values() { let player = client_guard.read().await; to_send += player.username.as_str(); to_send += ",";