ZacharyTalis / AltTextBot

A Discord bot designed to reduce the message clutter associated with image alt-text. Also includes leaderboard functionality for alt-text submitters!
https://zacharytalis.com/blog/atb
Apache License 2.0
2 stars 0 forks source link

No display names on !atbboard board #15

Closed ZacharyTalis closed 3 years ago

ZacharyTalis commented 3 years ago

Member left for all board rankings instead of display names.

glossawy commented 3 years ago

For posterity, Discord made significant changes to how events are received which also broke receiving message events at all originally. Updating javacord to >3.1.0 fixed this but we should've looked into it more because the issue was Discord's new Gateway Intents system (Javacord Wiki on Intents). New Javacord enabled all non-privileged intents which let us get messages, but not privileged intents, which includes getting server member data, which requires Developer Portal changes.

Fixing this will just require enabling the GUILD_MEMBERS intent when connecting to the discord api gateway.