Skip to content

Commit

Permalink
Merge pull request #65 from Salanto/fix-decryptor
Browse files Browse the repository at this point in the history
Fix incorrect decryptor argument
  • Loading branch information
Crystalwarrior authored Jun 17, 2022
2 parents 5c1f3af + e642075 commit 16b481f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions server/network/aoprotocol.py
Original file line number Diff line number Diff line change
Expand Up @@ -122,8 +122,8 @@ def connection_made(self, transport):
self.server.config["timeout"], self.client.disconnect
)

# Idk why AO2 even expects a decryptor packet but here we are
self.client.send_command("decryptor", 34)
# Disables fantacrypt for clients older than 2.9, required for A02-Client to send HDID.
self.client.send_command("decryptor", "NOENCRYPT")

def connection_lost(self, exc):
"""User disconnected
Expand Down

0 comments on commit 16b481f

Please sign in to comment.