| Commit message (Collapse) | Author | Age | Lines | |
|---|---|---|---|---|
| * | Move Halloween to Holidays folder | 2021-09-04 | -203/+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 guide | 2021-05-14 | -2/+6 | |
| | | ||||
| * | chore: Prefer double quotes over single quotes | 2021-05-04 | -9/+9 | |
| | | ||||
| * | Clean Up the Halloween Season | 2021-04-19 | -16/+19 | |
| | | | | | | | | | | - 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. | |||
| * | First pass of easy to produce errors | 2021-02-05 | -0/+3 | |
| | | ||||
| * | Remove references to old name. | 2020-11-21 | -3/+3 | |
| | | | | | | I've tried to replace this with generic references where appropriate, but a lot of the time it just doesn't make a lot of sense to do so. | |||
| * | Port candy_collection.py to use Redis instead of JSON | 2020-11-16 | -34/+26 | |
| | | ||||
| * | Remove make_persistent import from bot extensions | 2020-11-14 | -1/+3 | |
| | | ||||
| * | Remove CandyCollection cogs from loaded cogs | 2020-11-14 | -1/+0 | |
| | | ||||
| * | Typo in word "none" | 2020-10-25 | -1/+1 | |
| | | | | Co-authored-by: gustavwilliam <[email protected]> | |||
| * | Satify lint | 2020-10-21 | -4/+2 | |
| | | ||||
| * | No-candy spook message | 2020-10-21 | -1/+15 | |
| | | ||||
| * | Remove an unrequired new-line and a comment | 2020-10-21 | -2/+0 | |
| | | ||||
| * | Fix candy distribution logic | 2020-10-21 | -6/+7 | |
| | | ||||
| * | send_spook_msg to staticmethod | 2020-10-15 | -2/+2 | |
| | | ||||
| * | Apply suggested re-formatting | 2020-10-14 | -10/+14 | |
| | | ||||
| * | Use persistant storage for candy scores | 2020-10-14 | -7/+8 | |
| | | ||||
| * | Remove redundant function ten_recent_msg | 2020-10-10 | -21/+8 | |
| | | ||||
| * | Use discord.Reaction#clear to remove reactions | 2020-10-10 | -11/+1 | |
| | | ||||
| * | Better organize and format candy command | 2020-10-10 | -14/+21 | |
| | | ||||
| * | Remove unused function get_message | 2020-10-10 | -16/+0 | |
| | | ||||
| * | Apply suggested changes | 2020-10-10 | -24/+33 | |
| | | ||||
| * | Fix: Update record on loosing | 2020-10-09 | -0/+1 | |
| | | ||||
| * | Satisfy lint | 2020-10-09 | -6/+4 | |
| | | ||||
| * | Cleanup CandyCollection | 2020-10-09 | -55/+39 | |
| | | ||||
| * | Remove redundant f-strings | 2020-07-14 | -3/+3 | |
| | | | | | This fixes a new lint error (F541) introduced by flake8 3.8. | |||
| * | 5/24 - bot exts - updated writing with utf8 encoding | 2020-05-24 | -1/+1 | |
| | | ||||
| * | 5/19 - ext - set upen files encoding to utf8 for bots | 2020-05-19 | -1/+1 | |
| | | ||||
| * | Refactor: capitalize Month enum members | 2020-03-31 | -3/+3 | |
| | | | | | Co-authored-by: MarkKoz <[email protected]> | |||
| * | 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/+225 | |
| 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. | ||||