aboutsummaryrefslogtreecommitdiffstats
path: root/bot/exts/evergreen/battleship.py (follow)
Commit message (Collapse)AuthorAgeLines
* Move game and fun commands to Fun folder, fix ddgGravatar Janine vN2021-09-05-448/+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 more not-needed `None` returnsGravatar Xithrius2021-09-02-1/+1
|
* Removed depricated `typing.Match`Gravatar Xithrius2021-09-02-2/+2
|
* Removed None return annotation for any __init__Gravatar Xithrius2021-09-01-1/+1
|
* Fix type annotationsGravatar decorator-factory2021-08-31-13/+13
|
* chore: Add Iceman's suggested changesGravatar ToxicKidz2021-05-15-4/+4
|
* chore: Make all aliases in commands tuplesGravatar ToxicKidz2021-05-15-1/+1
|
* chore: Don't return a Message object when the return annotation is NoneGravatar ToxicKidz2021-05-03-4/+8
|
* chore: End the sentence with a periodGravatar ToxicKidz2021-05-03-1/+1
|
* chore(evergreen): make usage of . at sentence ends consistentGravatar vcokltfre2021-04-19-3/+3
|
* chore(evergreen): format each cog load docstring the same wayGravatar vcokltfre2021-04-19-1/+1
|
* chore: switch commands.Bot typehints to bot.bot's BotGravatar vcokltfre2021-04-19-3/+4
|
* Update battleship.pyGravatar Sougata das2021-04-02-1/+1
|
* Fixed battleship reading uppercases incorrectly.Gravatar aruna20192021-01-21-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/+444
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.