You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently we use discord.Client for our bot client that can be updated to a more feature rich discord.ext.commands.Bot. This will free up the cluttered on_message check that we currently use for commands and provide more modularity as well as documentation for commands. The documentation can then be accessed through a help command on the discord server as well.
Since discord.ext.commands.Bot inherits discord.Client, theoretically, this transition will work.
The text was updated successfully, but these errors were encountered:
Currently we use
discord.Client
for our bot client that can be updated to a more feature richdiscord.ext.commands.Bot
. This will free up the clutteredon_message
check that we currently use for commands and provide more modularity as well as documentation for commands. The documentation can then be accessed through a help command on the discord server as well.Since
discord.ext.commands.Bot
inheritsdiscord.Client
, theoretically, this transition will work.The text was updated successfully, but these errors were encountered: