Browse Source

Fixed a bug in the receive_transaction method that ensures the correct termination of the loop.

pull/37/head
Konstantin Ananev 4 months ago
parent
commit
baa2c7dea2
  1. 4
      rcon/battleye/client.py

4
rcon/battleye/client.py

@ -77,6 +77,8 @@ class Client(BaseClient, socket_type=SOCK_DGRAM):
if isinstance(response, CommandResponse):
command_responses.append(response)
seq = response.seq
if len(command_responses) >= seq:
break
continue
if isinstance(response, ServerMessage):
@ -85,8 +87,6 @@ class Client(BaseClient, socket_type=SOCK_DGRAM):
if login_response is not None:
return login_response
if len(command_responses) >= seq:
break
return "".join(
command_response.message

Loading…
Cancel
Save