newState.serverDeaf get the user who did it
I don’t know how to get the user who muted/unmuted or deafened the user.

2 Replies
- 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!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.