Fixed initial cogs loading

This commit is contained in:
Twentysix 2016-04-30 19:44:12 +02:00
parent 9603075538
commit 4485de64ab

4
red.py
View File

@ -298,7 +298,9 @@ def load_cogs():
if not get_answer():
registry[extension] = False
continue
registry[extension] = True
registry[extension] = True
if not registry[extension]:
continue
try:
owner_cog._load_cog(extension)
except Exception as e: