From a337b623dd25f275a5ea1181f9a53d0af7dc3c96 Mon Sep 17 00:00:00 2001 From: Richard Neumann Date: Tue, 25 Jul 2023 11:20:17 +0200 Subject: [PATCH] Reset read threshold to 4096 --- rcon/battleye/client.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rcon/battleye/client.py b/rcon/battleye/client.py index 7601296..18baa71 100644 --- a/rcon/battleye/client.py +++ b/rcon/battleye/client.py @@ -36,7 +36,7 @@ class Client(BaseClient, socket_type=SOCK_DGRAM): def __init__( self, *args, - max_length: int = 6096, + max_length: int = 4096, message_handler: MessageHandler = log_message, **kwargs ):