diff --git a/steam/steamid.py b/steam/steamid.py index c1ffe72..be14063 100644 --- a/steam/steamid.py +++ b/steam/steamid.py @@ -256,6 +256,9 @@ def make_steam64(id=0, *args, **kwargs): # 64 bit elif value < 2**64: return value + # invalid account id + else: + accountid = 0 # textual input e.g. [g:1:4] else: diff --git a/tests/test_steamid.py b/tests/test_steamid.py index 82c37d8..1e7149a 100644 --- a/tests/test_steamid.py +++ b/tests/test_steamid.py @@ -121,6 +121,12 @@ class SteamID_initialization(unittest.TestCase): self.compare(SteamID("invalid_format"), [0, EType.Invalid, EUniverse.Invalid, 0]) + def test_arg_too_large_invalid(self): + self.compare(SteamID(111111111111111111111111111111111111111), + [0, EType.Invalid, EUniverse.Invalid, 0]) + self.compare(SteamID("1111111111111111111111111111111111111"), + [0, EType.Invalid, EUniverse.Invalid, 0]) + ###################################################### # KWARGS ######################################################