aboutsummaryrefslogtreecommitdiffstats
path: root/bot/bot.py (unfollow)
Commit message (Collapse)AuthorLines
2021-05-10chore: Use ctx instead of ctx.channelGravatar ToxicKidz-9/+6
2021-05-10chore: ctx.message.author -> ctx.authorGravatar ToxicKidz-6/+6
2021-05-10chore: Apply more suggested changesGravatar ToxicKidz-18/+17
2021-05-09fix: Use str.isdecimal instead of str.isdigitGravatar ToxicKidz-4/+4
2021-05-07chore: Simplify the if statementGravatar ToxicKidz-1/+1
Co-authored-by: Anand Krishna <[email protected]>
2021-05-07chore: Apply anand's suggested changesGravatar ToxicKidz-5/+4
2021-05-07chore: Reformat the code to follow the style guildGravatar ToxicKidz-50/+92
2021-05-07Update return type hint to reflect new behaviour.Gravatar ChrisJL-1/+1
Co-authored-by: ToxicKidz <[email protected]>
2021-05-07Correct grammer in the new mosaic command outputGravatar Chris-1/+1
2021-05-07Add the number of squares that were used by .mosaicGravatar Chris-1/+1
This is useful for when we round up the number of squares used, users can still see how many were actually used.
2021-05-07Download avatars as size 1024 to avoid very large avatars affecting infraGravatar Chris-4/+4
2021-05-07Switch from fetch_member to fetch_userGravatar Chris-33/+35
This is because discord.py would populate the user portion of the fetched member with cached information which would cause the avatar url not to be updated as we had intended with that function
2021-05-07fix: Add a missing 'not'Gravatar ToxicKidz-1/+1
2021-05-07chore: Get the next perfect squareGravatar ToxicKidz-2/+4
If the amount of squares is not a perfect square, get the next highest perfect square
2021-05-06chore: Check if the number of squares first is bigger than the max firstGravatar ToxicKidz-6/+3
Co-authored-by: Anand Krishna <[email protected]>
2021-05-05chore: Use the name AvatarModify instead of PfpModifyGravatar ToxicKidz-1/+1
2021-05-05chore: Prefer double quotes over single quotesGravatar ToxicKidz-9/+9
2021-05-05chore: Fetch the member and use Colours.blue in the embed for the .mosaic ↵Gravatar ToxicKidz-2/+9
command
2021-05-05chore: Remove useless call of `dict.keys()`Gravatar ToxicKidz-1/+1
Co-authored-by: Anand Krishna <[email protected]>
2021-05-05chore: Use pathlib more often and apply other changesGravatar ToxicKidz-11/+10
2021-05-05chore: Apply suggested changesGravatar ToxicKidz-7/+8
2021-05-05chore: Improve .space epic's docstringGravatar ToxicKidz-1/+1
2021-05-05chore: Apply anand's suggested changesGravatar ToxicKidz-99/+96
2021-05-05chore: Add all of the converters into bot/utils/converters.pyGravatar ToxicKidz-67/+80
2021-05-05chore: Don't use "is not None"Gravatar ToxicKidz-1/+1
Co-authored-by: Anand Krishna <[email protected]>
2021-05-05chore: Don't have defaults for typing.Optional[...] in commandsGravatar ToxicKidz-6/+6
2021-05-05chore: Add a 5 second cooldown per user to .catifyGravatar ToxicKidz-0/+1
2021-05-04chore: Replace the remaining double quotes with double quotesGravatar ToxicKidz-11/+11
2021-05-04chore: Change back to the original stringGravatar ToxicKidz-1/+1
2021-05-04fix: Pass bot only when __init__ is definedGravatar ToxicKidz-40/+32
2021-05-04Apply suggested changes to hanukkah_embed.pyGravatar ToxicKidz-6/+6
2021-05-04chore: Apply suggested changesGravatar ToxicKidz-12/+12
2021-05-04chore: Prefer double quotes over single quotesGravatar ToxicKidz-430/+430
2021-05-04chore: Don't make content an empty stringGravatar ToxicKidz-1/+1
Co-authored-by: Matteo Bertucci <[email protected]>
2021-05-03chore: Don't return a Message object when the return annotation is NoneGravatar ToxicKidz-18/+34
2021-05-03chore: End the sentence with a periodGravatar ToxicKidz-1/+1
2021-05-03Clean Up the Easter SeasonGravatar ToxicKidz-35/+33
- Keep Consistent setup docstrings - Type hint to bot.Bot instead of commands.Bot - Don't set Cog.bot if it isn't used
2021-05-03chore: Clean Up the Valentines SeasonGravatar ToxicKidz-33/+30
- Change commands.Bot type hints to bot.Bot - Remove the setting of Cog.bot if it isn't being used - Change ctx.author -> ctx.message.author
2021-05-03fix: Don't pass bot to __init__Gravatar ToxicKidz-1/+1
2021-04-30fix: tempelate -> templateGravatar ToxicKidz-1/+1
2021-04-30feat: Add the .mosaic commandGravatar ToxicKidz-6/+202
2021-04-30fix: remove () from list of safe filename charsGravatar vcokltfre-1/+1
2021-04-30Add non-underscore aliases for lazy people like me :)Gravatar Chris-1/+1
2021-04-30Consistant use of double quotes and tuples in avatar_mod cogGravatar Chris-11/+10
2021-04-30Rename pfp_modify cog and group to avatar_mod for clarityGravatar Chris-10/+10
Added in aliases for ease of use too.
2021-04-27Updated bot/utils/exceptions.pyGravatar Salil Chincholikar-1/+1
Co-authored-by: Joe Banks <[email protected]>
2021-04-27Reworded/fixed grammatical errorGravatar Salil Chincholikar-1/+1
2021-04-23Fix spelling of a user facing message in reddit cogGravatar ChrisJL-1/+1
Co-authored-by: Xithrius <[email protected]>
2021-04-23Reword Issues CommentGravatar Hassan Abouelela-1/+1
2021-04-23Suppresses Links In CommandsGravatar Hassan Abouelela-2/+8
Suppresses links in certain commands that can echo back user input. Signed-off-by: Hassan Abouelela <[email protected]>