1
0
Fork 0
mirror of synced 2024-05-20 20:42:27 +12:00

Comment out blocking call temporarily

This commit is contained in:
Phxntxm 2017-03-20 16:56:05 -05:00
parent 11cee7e7a4
commit 9cccbdb8de

View file

@ -176,7 +176,8 @@ class Core:
# Add the normal values
embed.add_field(name='Total Servers', value=len(self.bot.guilds))
embed.add_field(name='Total Members', value=len(set(self.bot.get_all_members())))
# TODO: Figure out how to make this next call not-blocking
#embed.add_field(name='Total Members', value=len(set(self.bot.get_all_members())))
# Count the variable values; hangman, tictactoe, etc.
hm_games = len(self.bot.get_cog('Hangman').games)