remove default client data (where text hints go)

This commit is contained in:
2025-11-21 20:20:51 -05:00
parent bbe8ea3a85
commit c2891654a3

View File

@@ -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(),
}
}
}