Skip to content

Commit

Permalink
Update aoprotocol.py
Browse files Browse the repository at this point in the history
  • Loading branch information
UnDeviato authored Jul 29, 2024
1 parent 3cb1e74 commit 5ce3a63
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions server/network/aoprotocol.py
Original file line number Diff line number Diff line change
Expand Up @@ -1040,10 +1040,10 @@ def net_cmd_ms(self, args):
offset_pair = 33
other_offset = 0
third_offset = -33
elif self.client.last_offset == 0 and client_pair.last_offset == -33 and third_client.last_offset == 33:
elif self.client.last_offset == 0 and client_pair.last_offset == 33 and third_client.last_offset == -33:
offset_pair = 0
other_offset = -33
third_offset = 33
other_offset = 33
third_offset = -33
else:
offset_pair = 0
other_offset = -33
Expand Down

0 comments on commit 5ce3a63

Please sign in to comment.