aboutsummaryrefslogtreecommitdiffstats
path: root/bot/exts/utils/extensions.py (follow)
Commit message (Collapse)AuthorAgeLines
* make invoke_help_command only take ctxGravatar ToxicKidz2021-03-13-4/+4
|
* Make flake8 happy.Gravatar ToxicKidz2021-03-12-1/+1
|
* make utility invoke_help_command functionGravatar ToxicKidz2021-03-12-9/+5
|
* change ctx.send_help to ctx.invoke(help_command)Gravatar ToxicKidz2021-03-11-4/+8
| | | | ;
* Remove references to old name.Gravatar Leon Sandøy2020-11-21-1/+1
| | | | | I've tried to replace this with generic references where appropriate, but a lot of the time it just doesn't make a lot of sense to do so.
* Fix extensions command bot avatar urlGravatar Gustav Odinger2020-09-21-1/+1
| | | | - Uses self.bot (the bot instance) instead of Bot (the bot object) to access avatar url
* Move bot repo URL constant and delete avatar URLGravatar Gustav Odinger2020-09-21-3/+3
| | | | | | | | - Avatar URL can be accessed through bot.user.avatar_url and won't need to be a constant - Bot repo URL fits better under the Client named tuple - URLs class removed, since it was no longer used
* Remove modlog from unload blacklist Gravatar gustavwilliam2020-09-21-1/+1
| | | | | - No modlog exists for SeasonalBot and is therefore redundant Co-authored-by: Dennis Pham <[email protected]>
* Update max_size of paginator Gravatar gustavwilliam2020-09-21-1/+1
| | | | | - Should prevent `RuntimeError: Line exceeds maximum page size 698` Co-authored-by: Dennis Pham <[email protected]>
* Add extensions managment commandGravatar Gustav Odinger2020-09-21-0/+265
- Allows admins and core developes to manage loaded and unloaded extensions (mostly cogs) - Mostly copied from the 'Python' bot, with some tweaks to make it work for SeasonalBot