From 5e2d9153753adc17b3e4802569a0ce111e17e344 Mon Sep 17 00:00:00 2001 From: Steve C Date: Sun, 27 Aug 2017 02:06:07 -0400 Subject: [PATCH] Add pinning to manage_messages doc --- discord/permissions.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/discord/permissions.py b/discord/permissions.py index 0f4080b21..12434c78f 100644 --- a/discord/permissions.py +++ b/discord/permissions.py @@ -323,7 +323,7 @@ class Permissions: @property def manage_messages(self): - """Returns True if a user can delete messages from a text channel. Note that there are currently no ways to edit other people's messages.""" + """Returns True if a user can delete or pin messages in a text channel. Note that there are currently no ways to edit other people's messages.""" return self._bit(13) @manage_messages.setter