From af912f30880197d04b66bc95e89599aab6b1a59b Mon Sep 17 00:00:00 2001 From: Alexander Medvedev Date: Sun, 11 Aug 2024 10:31:47 +0200 Subject: [PATCH] Disable prevent_proxy_connections by default --- pumpkin/src/config/auth_config.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pumpkin/src/config/auth_config.rs b/pumpkin/src/config/auth_config.rs index 5768cd1fc..936ed9dda 100644 --- a/pumpkin/src/config/auth_config.rs +++ b/pumpkin/src/config/auth_config.rs @@ -85,7 +85,7 @@ impl Default for Authentication { fn default() -> Self { Self { enabled: true, - prevent_proxy_connections: true, + prevent_proxy_connections: false, player_profile: Default::default(), textures: Default::default(), }