Browse Source

Merge baa2c7dea2 into 2cda854281

pull/37/merge
Konstantin Ananev 4 months ago
committed by GitHub
parent
commit
b836139e7a
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  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): if isinstance(response, CommandResponse):
command_responses.append(response) command_responses.append(response)
seq = response.seq seq = response.seq
if len(command_responses) >= seq:
break
continue continue
if isinstance(response, ServerMessage): if isinstance(response, ServerMessage):
@ -85,8 +87,6 @@ class Client(BaseClient, socket_type=SOCK_DGRAM):
if login_response is not None: if login_response is not None:
return login_response return login_response
if len(command_responses) >= seq:
break
return "".join( return "".join(
command_response.message command_response.message

Loading…
Cancel
Save