From fd1620b92929936509a1a8a3d47ee36471758fdc Mon Sep 17 00:00:00 2001 From: "NG (Graham)" Date: Sun, 27 Jul 2025 20:28:48 -0400 Subject: [PATCH] Fix compile error due to auth error type change --- rc_multiplayer/src/user.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rc_multiplayer/src/user.rs b/rc_multiplayer/src/user.rs index 6a69b6b..231a1d8 100644 --- a/rc_multiplayer/src/user.rs +++ b/rc_multiplayer/src/user.rs @@ -23,7 +23,7 @@ impl User { true }, Err(e) => { - log::error!("Failed to authenticate {}: {}", info.player_name.0, e); + log::error!("Failed to authenticate {}: {}", info.player_name.0, e.message); false } }