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:
403
403
@discord .utils .copy_doc (Message .reply )
404
404
async def reply (self , content : str | None = None , ** kwargs : Any ) -> Message :
405
405
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):
2255
2255
clear_reaction = Message .clear_reaction
2256
2256
clear_reactions = Message .clear_reactions
2257
2257
reply = Message .reply
2258
+ forward_to = Message .forward_to
2258
2259
to_reference = Message .to_reference
2259
2260
to_message_reference_dict = Message .to_message_reference_dict
2260
2261
You can’t perform that action at this time.
0 commit comments