How Find Emojis By Name In Discord.js

后端 未结 4 1094
渐次进展
渐次进展 2021-01-24 08:01

So I have been utterly frustrated these past few days because I have not been able to find a single resource online which properly documents how to find emojis when writing a di

4条回答
  •  遥遥无期
    2021-01-24 08:49

    In case anyone like me finds this while looking for an answer, in v12 you will have to add cache in, making it look like this:

    var bean = message.guild.emojis.cache.find(emoji => emoji.name == 'bean');
    

    rather than:

    var bean = message.guild.emojis.find(emoji => emoji.name == 'bean');

提交回复
热议问题