aboutsummaryrefslogtreecommitdiffstats
path: root/bot/exts/halloween/monstersurvey.py (follow)
Commit message (Collapse)AuthorAgeLines
* Move Halloween to Holidays folderGravatar Janine vN2021-09-04-205/+0
| | | | | Moves all the hallowen features to the holidays folder. Also updates the paths to reflect the folder moves.
* chore: Refactor more code to follow our style guideGravatar ToxicKidz2021-05-14-10/+13
|
* chore: Use pathlib.Path.read_text & write_text over openGravatar ToxicKidz2021-05-13-4/+2
|
* Merge branch 'spring-cleanup' of https://github.com/ToxicKidz/sir-lancebot ↵Gravatar ToxicKidz2021-05-05-1/+1
|\ | | | | | | into spring-cleanup
| * chore: Remove useless call of `dict.keys()`Gravatar ToxicKidz2021-05-05-1/+1
| | | | | | Co-authored-by: Anand Krishna <[email protected]>
* | chore: Use pathlib more often and apply other changesGravatar ToxicKidz2021-05-05-8/+8
|/
* chore: Prefer double quotes over single quotesGravatar ToxicKidz2021-05-04-42/+42
|
* Clean Up the Halloween SeasonGravatar ToxicKidz2021-04-19-3/+3
| | | | | | | | | - Change commands.Bot type hints to bot.Bot - Remove the setting of Cog.bot if it isn't being used - Use Bot.http_session instead of creating new ones - Keep string quotes and Doc-Strings consistant - Remove redundant/outdated code Ignored spookyavatar.py as it is being moved in another PR.
* Don't load Monster survey cogGravatar Jeremiah Boby2020-11-14-1/+0
|
* 5/24 - bot exts - updated writing with utf8 encodingGravatar jodth072020-05-24-1/+1
|
* 5/19 - ext - set upen files encoding to utf8 for botsGravatar jodth072020-05-19-1/+1
|
* Deseasonify: log in `add_cog` rather than in each `setup`Gravatar kwzrd2020-03-28-1/+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/+206
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.