aboutsummaryrefslogtreecommitdiffstats
path: root/bot/exts/halloween (follow)
Commit message (Collapse)AuthorAgeLines
* Remove redundant f-stringsGravatar MarkKoz2020-07-14-3/+3
| | | | This fixes a new lint error (F541) introduced by flake8 3.8.
* Merge branch 'master' into encoding_bug_fixGravatar Josué D. (JD)2020-05-24-2/+17
|\
| * Update halloweenify error message to make it more readable and restructure ↵Gravatar Matteo Bertucci2020-05-11-6/+6
| | | | | | | | the flow
| * Handle staff users and DMs in the halloweenify cogGravatar Matteo Bertucci2020-05-04-2/+17
| | | | | | | | The bot doesn't have enough rights to modify staff nicknames, and can't change it when it is invoked through DM neither.
* | 5/24 - bot exts - updated writing with utf8 encodingGravatar jodth072020-05-24-3/+3
| |
* | 5/19 - ext - set upen files encoding to utf8 for botsGravatar jodth072020-05-19-6/+6
|/
* Transition towards `wait_until_guild_available` useGravatar kwzrd2020-04-04-3/+4
| | | | | | All calls to `wait_until_ready` are replaced with the new event. To help with static analysis, we annotate `bot` attrs as instances of our custom SeasonalBot class where necessary.
* Refactor: capitalize Month enum membersGravatar kwzrd2020-03-31-8/+8
| | | | Co-authored-by: MarkKoz <[email protected]>
* Deseasonify: log in `add_cog` rather than in each `setup`Gravatar kwzrd2020-03-28-15/+0
| | | | | | | | | | | | The previous system required each extension's `setup` func to log that the cog was loaded. This leads to inconsistent messages all trying to convey the same thing, variable logger names in the output file are difficult to read, and several extensions were not logging at all. By logging directly in the `add_cog` method, we reduce code repetition, ensure consistent format, and remove the responsibility to remember that a log should be made.
* Deseasonify: rename `seasons` pkg to `exts`Gravatar kwzrd2020-03-28-0/+1560
It is believed that this is now a more logical name for the package, as extensions no longer bind to seasons. Internally, packages are still grouped into seasonal sub-packages. There are quite a few, and it makes sense to group them by a common theme that inspired their functionality.