Merge branch 'master' into metrics

This commit is contained in:
io 2021-05-19 21:27:03 +00:00
commit 6d184a6cf6
2 changed files with 7 additions and 0 deletions

5
bot.py
View File

@ -29,6 +29,11 @@ logging.getLogger('discord').setLevel(logging.INFO)
logger = logging.getLogger(__name__)
logger.setLevel(logging.INFO)
# SelectorEventLoop on windows doesn't support subprocesses lol
if sys.platform == 'win32':
loop = asyncio.ProactorEventLoop()
asyncio.set_event_loop(loop)
class Bot(Bot):
startup_extensions = (
'cogs.emote',

View File

@ -8,6 +8,8 @@
# the bot must have Create Instant Invite permissions for this channel
# if set to None, the support command will be disabled
'support_server_invite_channel': None,
'prefixes': ['em/'],
'tokens': {
'discord': 'sek.rit.token',