Merge pull request #52 from rocketprogrammer/develop

otp-distributed: Python 3 fix
This commit is contained in:
Open Toontown 2022-01-14 17:05:43 -05:00 committed by GitHub
commit 5371c749e3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -917,7 +917,7 @@ class ToontownClientRepository(OTPClientRepository.OTPClientRepository):
for i in range(0, count):
doId = di.getUint32()
name = di.getString()
dnaString = di.getString()
dnaString = di.getBlob()
dna = ToonDNA.ToonDNA()
dna.makeFromNetString(dnaString)
petId = di.getUint32()