From 7daa948fe39627ec3dc477646dbbdaf22568459c Mon Sep 17 00:00:00 2001 From: Gabriel Huber Date: Fri, 17 Jan 2020 06:14:33 +0100 Subject: [PATCH] Fix GoldSrc support --- README.md | 2 +- a2s/info.py | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index c82c943..74f96fa 100644 --- a/README.md +++ b/README.md @@ -68,7 +68,7 @@ game_id=440, ping=0.253798684978392) ## Tested Games -Half-Life 2, Half-Life, Team Fortress 2, Counter-Strike: Global Offensive, ARK: Survival Evolved, Rust +Half-Life 2, Half-Life, Team Fortress 2, Counter-Strike: Global Offensive, Counter-Strike 1.6, ARK: Survival Evolved, Rust ## License diff --git a/a2s/info.py b/a2s/info.py index 564111b..5d061d6 100644 --- a/a2s/info.py +++ b/a2s/info.py @@ -151,7 +151,7 @@ class GoldSrcInfo(metaclass=DataclsMeta): vac_enabled: bool """Number of bots on the server""" - bots_count: int + bot_count: int # Optional: """URL to the mod website""" @@ -233,8 +233,8 @@ def parse_goldsrc(reader): resp.mod_website = reader.read_cstring() resp.mod_download = reader.read_cstring() reader.read(1) # Skip a NULL byte - resp.mod_version = reader.read_uint() - resp.mod_size = reader.read_uint() + resp.mod_version = reader.read_uint32() + resp.mod_size = reader.read_uint32() resp.multiplayer_only = reader.read_bool() resp.uses_custom_dll = reader.read_bool()