Skip to content

Commit 61335a5

Browse files
authored
Clarify embed characters limit
1 parent d7a3794 commit 61335a5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pydis_site/apps/content/resources/guides/python-guides/discord-embed-limits.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,11 @@ If you plan on using embed responses for your bot you should know the limits of
1111
- A **field name/title** is limited to **256 character** and the **value of the field** is limited to **1024 characters**
1212
- Embed **footer** is limited to **2048 characters**
1313
- Embed **author name** is limited to **256 characters**
14-
- The **total of characters** allowed in an embed is **6000**
14+
- The **total characters** of all embeds in a single message is limited to **6000**
15+
- A message is limited to **10 embeds**
1516

1617
Now if you need to get over this limit (for example for a help command), you would need to use pagination.
1718
There are several ways to do that:
1819

19-
- A library called **[disputils](https://pypi.org/project/disputils)**
2020
- An experimental library made by the discord.py developer called **[discord-ext-menus](https://github.com/Rapptz/discord-ext-menus)**
2121
- Make your own setup using **[wait_for()](https://discordpy.readthedocs.io/en/stable/ext/commands/api.html#discord.ext.commands.Bot.wait_for)** and wait for a reaction to be added

0 commit comments

Comments
 (0)