2 Commits

Author SHA1 Message Date
3bf763f196 adding proper intents for reactions 2025-07-16 13:04:39 -04:00
8f9205fbf0 adding emojis 2025-07-15 19:06:44 -04:00
2 changed files with 3 additions and 1 deletions

View File

@@ -20,7 +20,8 @@ const (
dg.IntentGuildMembers | dg.IntentGuildMembers |
dg.IntentGuildPresences | dg.IntentGuildPresences |
dg.IntentMessageContent | dg.IntentMessageContent |
dg.IntentsGuildMessages dg.IntentsGuildMessages |
dg.IntentGuildMessageReactions
) )
// basic bot structure containing discordgo connection as well as the command map // basic bot structure containing discordgo connection as well as the command map

View File

@@ -34,6 +34,7 @@ const (
ReactionDoubleExclamation Reaction = ":bangbang:" ReactionDoubleExclamation Reaction = ":bangbang:"
ReactionSkull Reaction = ":skull:" ReactionSkull Reaction = ":skull:"
ReactionSpeakingHead Reaction = ":speaking_head:" ReactionSpeakingHead Reaction = ":speaking_head:"
ReactionGreenCheck Reaction = ":white_check_mark:"
) )
// information about attachments to messages // information about attachments to messages