From 69ea3566625e29464a99ab757d3ff8951355882a Mon Sep 17 00:00:00 2001 From: Evan Robinson Date: Sun, 30 Mar 2025 07:03:57 -0400 Subject: [PATCH] feat(structs): add intents for guild and direct message polls (#1612) --- structs.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/structs.go b/structs.go index 3350d61..28158c3 100644 --- a/structs.go +++ b/structs.go @@ -3008,6 +3008,8 @@ const ( IntentGuildScheduledEvents Intent = 1 << 16 IntentAutoModerationConfiguration Intent = 1 << 20 IntentAutoModerationExecution Intent = 1 << 21 + IntentGuildMessagePolls Intent = 1 << 24 + IntentDirectMessagePolls Intent = 1 << 25 // TODO: remove when compatibility is not needed