From a9cc95ef6cbe37972aa88af7d7e01e8b25a31908 Mon Sep 17 00:00:00 2001 From: rasul Date: Wed, 8 Apr 2020 09:32:56 -0500 Subject: [PATCH] rustfmt --- src/game/state/login.rs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/game/state/login.rs b/src/game/state/login.rs index a79d8a2..79f764f 100644 --- a/src/game/state/login.rs +++ b/src/game/state/login.rs @@ -78,7 +78,7 @@ impl Game { send_queue.push(token, "\nNew password again: ", false, None); client.state = State::Login(Login::CreatePassword2((username.to_owned(), pass))); - }, + } PlayerCheck::Err(err) => { send_queue.push(token, "\nInvalid password:\n", false, None); for line in err { @@ -87,7 +87,6 @@ impl Game { send_queue.push(token, "\nNew password: ", false, None); } } - } }