remove password from rusty account for quicker testing

This commit is contained in:
Rusty Striker 2025-06-15 18:35:54 +03:00
parent 3cfabcc39f
commit bdb0436c9f
Signed by: RustyStriker
GPG key ID: 87E4D691632DFF15

View file

@ -28,7 +28,7 @@ pub struct GameServer {
impl GameServer { impl GameServer {
pub fn new() -> Self { pub fn new() -> Self {
let mut creds = HashMap::new(); 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("test".to_string(), "test".to_string());
creds.insert("dragonfly".to_string(), "dragonfly".to_string()); creds.insert("dragonfly".to_string(), "dragonfly".to_string());
Self { Self {