aboutsummaryrefslogtreecommitdiffstats
path: root/bot (follow)
Commit message (Collapse)AuthorAgeLines
...
| | * | Fix order of function parameters on @discord.ui.buttonGravatar Izan2022-10-02-6/+6
| | | |
| | * | Fix order of function parameters on @discord.ui.selectGravatar Izan2022-10-02-4/+4
| | | | | | | | | | | | | | | | During development the order of the `interaction` and `select` swapped, but this wasn't updated in the codebase. This commit fixes that.
| * | | Correct logic in `format_embed`.Gravatar Izan2022-10-02-2/+3
| | |/ | |/|
| * | Fix position-only arg in madlibs.pyGravatar Izan2022-10-02-1/+1
| | |
| * | Fix position-only arg in hangman.pyGravatar Izan2022-10-02-1/+1
| |/
| * Update quackstack integrationGravatar Chris Lovering2022-09-23-4/+3
| | | | | | | | With https://github.com/python-discord/quackstack/pull/74 the location for the generated duck as been moved to the Location header, as a full URL.
| * Remove all wait_until_guil_available as this is now done in bot-coreGravatar Chris Lovering2022-09-23-23/+1
| |
| * Update games cog token refresh logicGravatar Chris Lovering2022-09-23-37/+38
| | | | | | | | This moves away from an infinite loop, to a task scheduling approach. Doing it this way avoids an infinitely running cog_load
| * Support loading all extensions in CIGravatar Chris Lovering2022-09-21-1/+20
| |
| * Move init tasks to async cog_load functionsGravatar Chris Lovering2022-09-21-9/+4
| |
| * Fix breaking changes in emoji 2.0Gravatar Chris Lovering2022-09-21-2/+2
| |
| * Async load and unload exts in the extensions cogGravatar Chris Lovering2022-09-21-9/+9
| |
| * Support discord.py's new async cog loadingGravatar Chris Lovering2022-09-21-179/+179
| |
| * Update redis init due to new redis-py upgradeGravatar Chris Lovering2022-09-21-6/+7
| |
| * Use extension utils from bot-coreGravatar Chris Lovering2022-09-21-88/+46
| |
| * Move startup checks and logs to their own cogGravatar Chris Lovering2022-09-21-30/+45
| | | | | | | | This is to avoid needed to use wait_until_guild_available during the setup hook.
| * Remove reference to no longer used EmptyEmbed varGravatar Chris Lovering2022-09-21-2/+1
| |
| * Use BotBase from bot coreGravatar Chris Lovering2022-09-21-163/+79
| |
| * Use monkey patches from botcoreGravatar Chris Lovering2022-09-21-108/+3
| |
| * Fix issue #1050 (#1097)Gravatar Jeremiah2022-09-19-1/+1
| | | | | | Co-authored-by: ChrisJL <[email protected]>
| * Merge branch 'main' into fix-whitelist-inheritanceGravatar ChrisJL2022-09-18-7/+2
| |\
| | * Fix typehintGravatar Izan2022-09-06-5/+1
| | |
| | * Remove call to on_command_error that shouldn't be there.Gravatar Izan2022-09-06-2/+1
| | |
| * | Merge branch 'main' into fix-whitelist-inheritanceGravatar ChrisJL2022-09-18-538/+1962
| |\|
| * | Remove unnecessary hasattr checkGravatar wookie1842022-09-17-1/+1
| | |
| * | Split comment over lines evenlyGravatar wookie1842022-09-17-2/+2
| | |
| * | Apply suggestions from code reviewGravatar arl2022-07-09-1/+1
| | |
| * | minor: remove print debugging statementGravatar onerandomusername2022-01-12-1/+0
| | |
| * | fix: subcommands inherit their parent's whitelistGravatar onerandomusername2022-01-12-6/+22
| | | | | | | | | | | | | | | solves issue with adding decorator to the parent which wouldn't apply to the children
* | | Appeased the formatterGravatar Xithrius2022-11-02-1/+1
| | |
* | | Possible race condition avoidedGravatar Xithrius2022-11-02-2/+2
| | |
* | | Corrected indentationGravatar Xithrius2022-10-27-19/+20
| | |
* | | Fixed button not doing anything for other usersGravatar Xithrius2022-10-27-45/+37
| | |
* | | Fix broken linesGravatar Diabolical57772022-08-30-7/+5
| | |
* | | Use buttons for bookmark commandGravatar Diabolical57772022-08-30-3/+2
| | |
* | | Use buttons for bookmark commandGravatar Diabolical57772022-08-30-54/+77
| |/ |/|
* | Add 1<<15 to the raw intents valueGravatar Chris Lovering2022-08-28-0/+3
| | | | | | | | | | | | | | | | 1<<15 is the flag for message content intent, so adding this value to the intents value hard codes that to always be enabled. Doing it this way also bypasses the need to patch the flags themselvse in discord.py. This is required until https://github.com/python-discord/sir-lancebot/pull/1092 is merged.
* | Require dm delete command be invoceed by replying to a lance messageGravatar Chris Lovering2022-08-19-8/+5
| |
* | Update bookmark error handlingGravatar Chris Lovering2022-08-19-2/+1
| | | | | | | | This moves sending the error response to within the except block, making it easier to parse what the code is doing.
* | Allow help in DMsGravatar Chris Lovering2022-08-19-0/+2
| | | | | | | | Since there are some comands that work in DMs, we should allow the command to be ran there.
* | Don't output command name twice in help commandGravatar Chris Lovering2022-08-19-1/+0
| |
* | Update help command to work with root_aliasesGravatar Chris Lovering2022-08-19-1/+3
| | | | | | | | | | | | Specifying root_aliases causes bookmark delete to be registered as a command rather than subcommand, which causes it to be listed even though subcommands usually aren't, and this isn't done correctly. Co-authored-by: wookie184 <[email protected]>
* | fixup: Improved docstring and error message in bookmark commandGravatar Chris Lovering2022-08-19-2/+2
| |
* | Fix unbm DM only logicGravatar Chris Lovering2022-08-19-7/+11
| | | | | | | | | | | | The DM only check was interfering with our global check against DM messages. This commit also makes the docstring a little more explanatory, as this is what the user sees when running the help command.
* | Improve the docstring for the action_bookmark functionGravatar Chris Lovering2022-08-19-1/+5
| |
* | Add command to delete bot messages in DMs with sir-lancebotGravatar Chris Lovering2022-08-19-1/+26
| |
* | Remove need for additional abstraction in bookmark commandGravatar Chris Lovering2022-08-19-24/+15
| |
* | Simplify bookmark error embed helperGravatar Chris Lovering2022-08-19-15/+12
| |
* | Simplify when a message can not be found when bookmarkingGravatar Chris Lovering2022-08-19-11/+17
| |
* | Merge branch 'main' into feat/latex-enhancementGravatar ChrisJL2022-08-18-119/+160
|\ \