Is there a way to detect when an user sends a sticker in discord.js?
CodePudding user response:
You can try
if(message.stickers.size == 1) return console.log("user sent a sticker!")
Also I recommend you checking docs!
Is there a way to detect when an user sends a sticker in discord.js?
CodePudding user response:
You can try
if(message.stickers.size == 1) return console.log("user sent a sticker!")
Also I recommend you checking docs!