From c2891654a397b25c039baa092b6ac24434f32ac5 Mon Sep 17 00:00:00 2001 From: shadow cat Date: Fri, 21 Nov 2025 20:20:51 -0500 Subject: [PATCH] remove default client data (where text hints go) --- src/bin/client/rsc.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/bin/client/rsc.rs b/src/bin/client/rsc.rs index cd5e91d..77c82c7 100644 --- a/src/bin/client/rsc.rs +++ b/src/bin/client/rsc.rs @@ -9,8 +9,8 @@ pub struct ClientData { impl Default for ClientData { fn default() -> Self { Self { - ip: "localhost:39420".to_string(), - username: "your [NOVEMBER]".to_string(), + ip: String::new(), + username: String::new(), } } }