|
|
|
@ -138,7 +138,11 @@ class DiscordClient(commands.Bot): |
|
|
|
if steamIdContainer is None: |
|
|
|
return None |
|
|
|
else: |
|
|
|
return steamIdContainer["steam64"] |
|
|
|
try: |
|
|
|
return steamIdContainer["steam64"] |
|
|
|
except: |
|
|
|
print(steamIdContainer) |
|
|
|
return None |
|
|
|
|
|
|
|
async def GetSteam64OfDiscord(self, user, no_cache = False): |
|
|
|
if user.id in self.discord2steam_cache and not no_cache: |
|
|
|
|