aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSebastian Law <[email protected]>2021-05-04 04:21:59 -0700
committerGitHub <[email protected]>2021-05-04 07:21:59 -0400
commitb82a0dc6fd82df1dc01060ae64ee3b2f6512f288 (patch)
tree6cb8ec10960fec615fddaaccfedb5876d72ec9ea
parentAdd get_user to the things intents.members affects (diff)
downloaddiscord.py-b82a0dc6fd82df1dc01060ae64ee3b2f6512f288.tar.xz
discord.py-b82a0dc6fd82df1dc01060ae64ee3b2f6512f288.zip
[docs] remove mentions of bot only usability
-rw-r--r--discord/abc.py2
-rw-r--r--discord/channel.py9
-rw-r--r--discord/client.py7
3 files changed, 6 insertions, 12 deletions
diff --git a/discord/abc.py b/discord/abc.py
index c77e25b8..3ded0d59 100644
--- a/discord/abc.py
+++ b/discord/abc.py
@@ -1157,8 +1157,6 @@ class Messageable(Protocol):
Retrieves a single :class:`~discord.Message` from the destination.
- This can only be used by bot accounts.
-
Parameters
------------
id: :class:`int`
diff --git a/discord/channel.py b/discord/channel.py
index 7a21b5d2..74f274df 100644
--- a/discord/channel.py
+++ b/discord/channel.py
@@ -269,8 +269,6 @@ class TextChannel(discord.abc.Messageable, discord.abc.GuildChannel, Hashable):
You must have the :attr:`~Permissions.manage_messages` permission to
use this.
- Usable only by bot accounts.
-
Parameters
-----------
messages: Iterable[:class:`abc.Snowflake`]
@@ -281,8 +279,7 @@ class TextChannel(discord.abc.Messageable, discord.abc.GuildChannel, Hashable):
ClientException
The number of messages to delete was more than 100.
Forbidden
- You do not have proper permissions to delete the messages or
- you're not using a bot account.
+ You do not have proper permissions to delete the messages.
NotFound
If single delete, then the message was already deleted.
HTTPException
@@ -313,8 +310,8 @@ class TextChannel(discord.abc.Messageable, discord.abc.GuildChannel, Hashable):
without discrimination.
You must have the :attr:`~Permissions.manage_messages` permission to
- delete messages even if they are your own (unless you are a user
- account). The :attr:`~Permissions.read_message_history` permission is
+ delete messages even if they are your own.
+ The :attr:`~Permissions.read_message_history` permission is
also needed to retrieve message history.
Examples
diff --git a/discord/client.py b/discord/client.py
index 7b361f16..2ed8b4ef 100644
--- a/discord/client.py
+++ b/discord/client.py
@@ -1255,10 +1255,9 @@ class Client:
async def fetch_user(self, user_id):
"""|coro|
- Retrieves a :class:`~discord.User` based on their ID. This can only
- be used by bot accounts. You do not have to share any guilds
- with the user to get this information, however many operations
- do require that you do.
+ Retrieves a :class:`~discord.User` based on their ID.
+ You do not have to share any guilds with the user to get this information,
+ however many operations do require that you do.
.. note::