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

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()