aboutsummaryrefslogtreecommitdiffstats
path: root/bot/exts/fun/duck_game.py (follow)
Commit message (Collapse)AuthorAgeLines
* Bump ruff from 0.0.265 to 0.0.267 (#1276)Gravatar dependabot[bot]2023-05-15-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | * Bump ruff from 0.0.265 to 0.0.267 Bumps [ruff](https://github.com/charliermarsh/ruff) from 0.0.265 to 0.0.267. - [Release notes](https://github.com/charliermarsh/ruff/releases) - [Changelog](https://github.com/charliermarsh/ruff/blob/main/BREAKING_CHANGES.md) - [Commits](https://github.com/charliermarsh/ruff/compare/v0.0.265...v0.0.267) --- updated-dependencies: - dependency-name: ruff dependency-type: direct:development update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <[email protected]> * Fix linting errors from new ruff rules --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Chris Lovering <[email protected]>
* Apply fixes for ruff lintingGravatar Chris Lovering2023-05-09-6/+6
| | | | | Co-authored-by: wookie184 <[email protected]> Co-authored-by: Amrou Bellalouna <[email protected]>
* Support discord.py's new async cog loadingGravatar Chris Lovering2022-09-21-2/+2
|
* Make setting the old embed description cleanerGravatar camcaswell2021-10-02-3/+1
|
* Change docstring to be more help with the help commandGravatar Cam Caswell2021-09-24-1/+1
|
* Don't change board embed colorGravatar Cam Caswell2021-09-24-7/+0
| | | | Can't edit that embed
* Remove display_claimed_answerGravatar Cam Caswell2021-09-24-7/+0
| | | | Replaced with append_to_found_embed which is more general
* Change board embed colorGravatar Cam Caswell2021-09-24-2/+2
| | | | Can't update color when the game is over anymore
* Bring end_game up to dateGravatar Cam Caswell2021-09-24-2/+8
|
* Add function for appending to claimed answers embedGravatar Cam Caswell2021-09-24-1/+11
|
* Split initial embed in twoGravatar Cam Caswell2021-09-24-8/+18
| | | | | Board and claimed answers discord.py doesn't let you cleanly edit an embed with an image in it
* Move game and fun commands to Fun folder, fix ddgGravatar Janine vN2021-09-05-0/+336
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.