File tree Expand file tree Collapse file tree 2 files changed +5
-0
lines changed
Expand file tree Collapse file tree 2 files changed +5
-0
lines changed Original file line number Diff line number Diff line change @@ -403,3 +403,7 @@ async def send_help(self, *args: Any) -> Any:
403403 @discord .utils .copy_doc (Message .reply )
404404 async def reply (self , content : str | None = None , ** kwargs : Any ) -> Message :
405405 return await self .message .reply (content , ** kwargs )
406+
407+ @discord .utils .copy_doc (Message .forward_to )
408+ async def forward_to (self , channel : discord .abc .Messageable , ** kwargs : Any ) -> Message :
409+ return await self .message .forward_to (channel , ** kwargs )
Original file line number Diff line number Diff line change @@ -2255,6 +2255,7 @@ class PartialMessage(Hashable):
22552255 clear_reaction = Message .clear_reaction
22562256 clear_reactions = Message .clear_reactions
22572257 reply = Message .reply
2258+ forward_to = Message .forward_to
22582259 to_reference = Message .to_reference
22592260 to_message_reference_dict = Message .to_message_reference_dict
22602261
You can’t perform that action at this time.
0 commit comments