Skip to content

Commit

Permalink
Update bot.py to load cogs.plugin after cogs.utility
Browse files Browse the repository at this point in the history
This was done to allow plugins overriding the utility cog commands. Experimental change.
  • Loading branch information
khakers committed Mar 22, 2024
1 parent 002949c commit a5cf83f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bot.py
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ def __init__(self):
self.session = None
self._api = None
self.formatter = SafeFormatter()
self.loaded_cogs = ["cogs.modmail", "cogs.plugins", "cogs.utility"]
self.loaded_cogs = ["cogs.modmail", "cogs.utility", "cogs.plugins"]
self._connected = None
self.start_time = discord.utils.utcnow()
self._started = False
Expand Down

0 comments on commit a5cf83f

Please sign in to comment.