Browse Source

Fix boolean decoding

async v1.1.5
Gabriel Huber 5 years ago
parent
commit
d26c05875c
  1. 2
      a2s/byteio.py
  2. 2
      setup.py

2
a2s/byteio.py

@ -65,7 +65,7 @@ class ByteReader():
return self.unpack_one("d")
def read_bool(self):
return bool(self.unpack("b"))
return bool(self.unpack_one("b"))
def read_char(self):
char = self.unpack_one("c")

2
setup.py

@ -7,7 +7,7 @@ with open("README.md", "r") as readme:
setuptools.setup(
name="python-a2s",
version="1.1.4",
version="1.1.5",
author="Gabriel Huber",
author_email="[email protected]",
description="Query Source and GoldSource servers for name, map, players and more.",

Loading…
Cancel
Save