Browse Source

steamid: fix failing test

pull/304/head
Rossen Georgiev 5 years ago
committed by Rossen
parent
commit
8191d87392
  1. 8
      steam/steamid.py

8
steam/steamid.py

@ -289,10 +289,10 @@ def make_steam64(id=0, *args, **kwargs):
universe = EUniverse.Public
# 64 bit
elif value < 2**64:
accountid = value & 0xFFFFFFFF
instance = (value >> 32) & 0xFFFFF
etype = (value >> 52) & 0xF
universe = (value >> 56) & 0xFF
accountid = int(value & 0xFFFFFFFF)
instance = int((value >> 32) & 0xFFFFF)
etype = int((value >> 52) & 0xF)
universe = int((value >> 56) & 0xFF)
# invalid account id
else:
accountid = 0

Loading…
Cancel
Save