From 3bc58db4b12ed1b8613fa50154b93e5407668452 Mon Sep 17 00:00:00 2001 From: Lemon Rose Date: Fri, 15 Sep 2023 23:21:29 +0530 Subject: [PATCH] [PersonalChannels] update docs --- personalchannels/core.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/personalchannels/core.py b/personalchannels/core.py index 3f01c44e..d808d33a 100644 --- a/personalchannels/core.py +++ b/personalchannels/core.py @@ -551,6 +551,8 @@ async def _nsfw(self, ctx: commands.Context, nsfw: Optional[bool] = None): async def _pin(self, ctx: commands.Context, message: Optional[discord.Message] = None): """ Pin a message in the personal channel. + + You can also reply to the message with invoking the command. """ channel = await self.config.member(ctx.author).channel() channel = ctx.guild.get_channel(channel) @@ -578,6 +580,8 @@ async def _pin(self, ctx: commands.Context, message: Optional[discord.Message] = async def _unpin(self, ctx: commands.Context, message: Optional[discord.Message] = None): """ Unpin a message from the personal channel. + + You can also reply to the message with invoking the command. """ channel = await self.config.member(ctx.author).channel() channel = ctx.guild.get_channel(channel)