From bdb0436c9f3018fb8282a9c18edc873b4e99cac4 Mon Sep 17 00:00:00 2001 From: Rusty Striker Date: Sun, 15 Jun 2025 18:35:54 +0300 Subject: [PATCH] remove password from rusty account for quicker testing --- src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib.rs b/src/lib.rs index fe3363f..885d758 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -28,7 +28,7 @@ pub struct GameServer { impl GameServer { pub fn new() -> Self { let mut creds = HashMap::new(); - creds.insert("rusty".to_string(), "rusty".to_string()); + creds.insert("rusty".to_string(), "".to_string()); creds.insert("test".to_string(), "test".to_string()); creds.insert("dragonfly".to_string(), "dragonfly".to_string()); Self {