CSUA / csua-backend

A backend for the CSUA interblags.
MIT License
21 stars 20 forks source link

Refactor bot commands in Philbot #144

Open royh02 opened 3 years ago

royh02 commented 3 years ago

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.