gsd 2 weeks ago
parent
commit
6936836bf2
  1. 6
      bot.py

6
bot.py

@ -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:

Loading…
Cancel
Save