aboutsummaryrefslogtreecommitdiffstats
path: root/bot/exts/evergreen/recommend_game.py (follow)
Commit message (Collapse)AuthorAgeLines
* Move game and fun commands to Fun folder, fix ddgGravatar Janine vN2021-09-05-51/+0
| | | | | | | | | | | This moves all the fun commands and games into the fun folder. This commit also makes changes to the duck_game. It was setting a footer during an embed init, which is no longer possible with the version of d.py we use. Additionally, an issue with editing an embed that had a local image loaded. The workaround for the time being is to update the message, not the embed.
* Removed None return annotation for any __init__Gravatar Xithrius2021-09-01-1/+1
|
* Migrate to Discord.py 2.0a0Gravatar Matteo Bertucci2021-08-31-1/+1
| | | | | | Since the Discord.py repository has been archived, we can switch to the latest commit of 2.0a0, knowing no breaking change will occur (still pinned to the commit just in case). This commit also solves two small problems due to that fix, the avatar interface changing and Embed.name disappearing. Quite a painless migration.
* chore: Apply suggestions from code reviewGravatar ToxicKidz2021-05-15-1/+1
| | | Co-authored-by: Xithrius <[email protected]>
* chore: Make all aliases in commands tuplesGravatar ToxicKidz2021-05-15-1/+1
|
* chore: Use pathlib.Path.read_text & write_text over openGravatar ToxicKidz2021-05-13-2/+1
|
* chore: Prefer double quotes over single quotesGravatar ToxicKidz2021-05-04-5/+5
|
* chore: switch commands.Bot typehints to bot.bot's BotGravatar vcokltfre2021-04-19-2/+4
|
* 5/19 - bot | xmas, easter, evergreen - updated open statesments with ↵Gravatar jodth072020-05-19-1/+1
| | | | explicit encoding
* 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/+51
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.