| Commit message (Collapse) | Author | Age | Lines | |
|---|---|---|---|---|
| * | chore: Refactor more code to follow our style guide | 2021-05-14 | -6/+6 | |
| | | ||||
| * | chore: Add all of the converters into bot/utils/converters.py | 2021-05-05 | -27/+1 | |
| | | ||||
| * | chore: Apply suggested changes | 2021-05-04 | -2/+2 | |
| | | ||||
| * | chore: Prefer double quotes over single quotes | 2021-05-04 | -3/+3 | |
| | | ||||
| * | chore(evergreen): remove unneeded cog constructors | 2021-04-19 | -1/+1 | |
| | | ||||
| * | chore(evergreen): make usage of . at sentence ends consistent | 2021-04-19 | -5/+5 | |
| | | ||||
| * | chore: switch commands.Bot typehints to bot.bot's Bot | 2021-04-19 | -2/+3 | |
| | | ||||
| * | make invoke_help_command only take ctx | 2021-03-13 | -1/+1 | |
| | | ||||
| * | make utility invoke_help_command function | 2021-03-12 | -2/+2 | |
| | | ||||
| * | change ctx.send_help to ctx.invoke(help_command) | 2021-03-11 | -1/+2 | |
| | | | | | ; | |||
| * | add modified files | 2020-09-24 | -6/+6 | |
| | | | | | | modify code to work on all platforms, fix grammatical errors | |||
| * | exit minesweeper early if DM disabled | 2020-05-04 | -11/+11 | |
| | | | | | | If user has DMs disabled then don't initialize board and don't start a game. | |||
| * | update minesweeper dm error message | 2020-04-29 | -1/+1 | |
| | | ||||
| * | handle disabled DMs when starting Minesweeper | 2020-04-26 | -5/+10 | |
| | | | | | | | If the user trying to start Minesweeper has DMs disabled then warn him in the channel where the command was invoked. | |||
| * | (Minesweeper): Moved `UserNotPlayingError` to `bot.utils.exceptions`, ↵ | 2020-04-08 | -14/+1 | |
| | | | | | removed definition in extensions. Removed custom error handler. | |||
| * | (Minesweeper): Added raising `UserNotPlayingError`, attached flag command to ↵ | 2020-04-08 | -0/+7 | |
| | | | | | error handler. | |||
| * | (Minesweeper): Renamed user not playing error handler, changed `error` type ↵ | 2020-04-08 | -2/+2 | |
| | | | | | hint from `typing.Any` to `Exception`, changed handling `KeyError` to handling `UserNotPlayingError`. | |||
| * | (Minesweeper): Created new exception `UserNotPlayingError`. | 2020-04-08 | -0/+6 | |
| | | ||||
| * | (Minesweeper): Reverted KeyError catching in reveal command, made error ↵ | 2020-04-07 | -5/+8 | |
| | | | | | handler that catch it instead and attached reveal and end command to it. | |||
| * | (Minesweeper): Added try-except block to reveal command. | 2020-04-06 | -1/+5 | |
| | | ||||
| * | Deseasonify: log in `add_cog` rather than in each `setup` | 2020-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` | 2020-03-28 | -0/+285 | |
| 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. | ||||