newState.serverDeaf get the user who did it

I don’t know how to get the user who muted/unmuted or deafened the user.
No description
2 Replies
d.js toolkit
d.js toolkit2mo ago
- What's your exact discord.js npm list discord.js and node node -v version? - Not a discord.js issue? Check out #other-js-ts. - Consider reading #how-to-get-help to improve your question! - Explain what exactly your issue is. - Post the full error stack trace, not just the top part! - Show your code! - Issue solved? Press the button!
Shmuelley
ShmuelleyOP2mo ago
I solved it. If it is needed by anybody else, I used: const auditLog = await guild.fetchAuditLogs().then(audit => audit.entries.first()); const executor = auditLog.executor; The executor constant works the same as the user property does. You may use tag, id, username and so on. executor.id would return the id of the user who executed this event.

Did you find this page helpful?