#SocketGuildEvent / IGuildScheduledEvent "Creator" field is null in event handlers
1 messages · Page 1 of 1 (latest)
what gateway intents do you have enabled
services.AddSingleton<DiscordSocketConfig>(new DiscordSocketConfig
{
GatewayIntents = GatewayIntents.GuildScheduledEvents
| GatewayIntents.DirectMessageTyping
| GatewayIntents.DirectMessageReactions
| GatewayIntents.DirectMessages
| GatewayIntents.GuildMessageTyping
| GatewayIntents.GuildMessageReactions
| GatewayIntents.GuildMessages
| GatewayIntents.GuildVoiceStates
});
try adding guilds and guildUsers
Guilds seemed to do it, thanks!
Weird, now it suddenly isn't again
Adding the Guilds intent seemed to work, but after re-starting the bot a few times, now Creator is null again, even after adding and removing the Guilds intent and re-starting the bot a few times
it's probably an issue with caching then
on discords side?
sadly doesn't solve it 