Last active
October 12, 2019 19:03
-
-
Save blubbll/d3623aeeda4694919bac06b58ac68fa1 to your computer and use it in GitHub Desktop.
reactions remove discordjs
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//loop over msg reactions | |
for (const _r of message.reactions) { | |
const r = _r[1]; | |
//remove reaction of member | |
r.remove(member); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment