diff --git a/discord/abc.py b/discord/abc.py index a2ec977d2..88734d67b 100644 --- a/discord/abc.py +++ b/discord/abc.py @@ -869,7 +869,7 @@ class Messageable(metaclass=abc.ABCMeta): raise InvalidArgument('file parameter must be File') try: - data = await state.http.send_files(channel.id, files=[file], + data = await state.http.send_files(channel.id, files=[file], allowed_mentions=allowed_mentions, content=content, tts=tts, embed=embed, nonce=nonce) finally: file.close()