From d26c05875c8a5621eea1fef6be82a2ff2880b04c Mon Sep 17 00:00:00 2001 From: Gabriel Huber Date: Tue, 19 May 2020 01:58:11 +0200 Subject: [PATCH] Fix boolean decoding --- a2s/byteio.py | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/a2s/byteio.py b/a2s/byteio.py index dcaf191..b40aaba 100644 --- a/a2s/byteio.py +++ b/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") diff --git a/setup.py b/setup.py index 5bed764..273dc00 100644 --- a/setup.py +++ b/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="mail@gabrielhuber.at", description="Query Source and GoldSource servers for name, map, players and more.",