You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: guide/docs/popular-topics/reactions.mdx
+4-4
Original file line number
Diff line number
Diff line change
@@ -6,7 +6,7 @@ hide_table_of_contents: true
6
6
# Reactions
7
7
8
8
Reactions are Discord's way of adding emojis to other messages. Early on, before Discord introduced [components](../interactions/buttons.mdx), this system was largely used to make interactive messages and apps.
9
-
Having bots react to messages is less common now, and is somewhat considered legacy behaviour.
9
+
Having bots react to messages is less common now, and is somewhat considered legacy behavior.
10
10
This guide will teach you the basics of how they work, since they still have their use cases, like reaction role systems and polling.
11
11
12
12
In Disnake, reactions are represented with <DocsLinkreference="disnake.Reaction">Reaction</DocsLink> objects. Whenever you operate on a <DocsLinkreference="disnake.Message">Message</DocsLink> you can access a list of reactions attached to that message.
@@ -54,7 +54,7 @@ In this guide we will be providing an example using the <DocsLink reference="dis
54
54
Since reactions utilize Emojis this guide will also include a quick primer on how disnake handles emojis
55
55
**Emojis have three forms:**
56
56
57
-
- <DocsLinkreference="disnake.Emoji">Emoji</DocsLink> Custom emojis are primarely returned when custom emojis are grabbed
57
+
- <DocsLinkreference="disnake.Emoji">Emoji</DocsLink> Custom emojis are primarily returned when custom emojis are grabbed
58
58
from the guild/bot
59
59
- <DocsLinkreference="disnake.PartialEmoji">PartialEmoji</DocsLink> Stripped down version of Emoji. Which appears in raw
60
60
events or when the bot cannot access the custom emoji
@@ -156,8 +156,8 @@ Notice how second emoji resolved into **:disnake:** because the emoji is on a se
156
156
<br />
157
157
158
158
:::caution
159
-
We can only use custom emojis from servers the bot has joined, but we can use them interchangably on those servers.
160
-
Bots can make <DocsLinkreference="disnake.ui.Button">buttons</DocsLink> using emojis from servers they're not members of, this may or may not be intended behaviour by Discord and should not be relied on.
159
+
We can only use custom emojis from servers the bot has joined, but we can use them interchangeably on those servers.
160
+
Bots can make <DocsLinkreference="disnake.ui.Button">buttons</DocsLink> using emojis from servers they're not members of, this may or may not be intended behavior by Discord and should not be relied on.
0 commit comments