aboutsummaryrefslogtreecommitdiff
path: root/discord/ext
Commit message (Collapse)AuthorAgeFilesLines
* [commands] Add support for cogs.Rapptz2016-01-092-6/+128
| | | | | | Cogs are basically class instances that have commands and event listeners. They allow for better organisation and grouping of commands and state. Similar to subclassing discord.Client.
* [commands] Add support for registering more than one event listener.Rapptz2016-01-081-0/+93
|
* [commands] Change prefix callback signature and add when_mentioned.Rapptz2016-01-082-5/+11
| | | | | The utility allows for easy addition of "when the bot is mentioned" as the prefix. The change of signature was to facilitate this.
* [commands] Add a way to enable or disable certain commands.Rapptz2016-01-072-7/+39
|
* [commands] Special handling for when the converter is bool.Rapptz2016-01-071-0/+12
|
* [commands] Allow registration of multiple command prefixes.Rapptz2016-01-072-4/+22
|
* [commands] Don't skip whitespace if the command trigger is found.Rapptz2016-01-061-1/+1
|
* [commands] None default without specified type uses str now.Rapptz2016-01-061-1/+1
|
* [commands] Add CommandNotFound error.Rapptz2016-01-053-11/+22
|
* [commands] Add a way to remove commands.Rapptz2016-01-041-0/+19
|
* Documentation improvements on using check decorator.Rapptz2016-01-041-2/+32
|
* Add missing import in commands core.Rapptz2016-01-041-0/+2
|
* Initial implementation of commands extension module.Rapptz2016-01-047-0/+1069