| Commit message (Collapse) | Author | Lines |
|
|
|
|
|
A client instance is necessary for the core feature of this function.
There is no way to obtain it from the other arguments. The previous
code was wrong to think `discord.Guild.me` is an equivalent.
Fixes #1112
|
|
Before, any user could modify the reminders of others by the id.
This restricts the behaviour to only admins and users can only modify
the reminders they authored.
|
|
|
|
The defaults should be last to ensure they don't take precedence over
explicitly set values.
|
|
|
|
|
|
|
|
Fixes #1065
|
|
Use a Unicode look-alike character to replace square brackets, since
they'd otherwise interfere with the Markdown.
Fixes #1030
|
|
Discord has a limit of 2000 characters for messages.
|
|
The modification propagated across all code that is using the same
`Message` object, including all other `on_message` listeners. This
caused weird bugs e.g. the filtering cog thinking the bot authored a
message that triggered a filter.
Patching only `ctx.author` means the implementation is more fragile.
Infraction code must ensure it only retrieves the author via
`ctx.author` and not through `ctx.message`.
Fixes #1005
Fixes BOT-7D
|
|
|
|
|
|
See issue #1101
|
|
The error happens when a filter is triggered by a message edit.
Fixes #1099
Fixes BOT-6B
|