How Find Emojis By Name In Discord.js

后端 未结 4 1092
渐次进展
渐次进展 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

    Please check out the switching to v12 discord.js guide

    v12 introduces the concept of managers, you will no longer be able to directly use collection methods such as Collection#get on data structures like Client#users. You will now have to directly ask for cache on a manager before trying to use collection methods. Any method that is called directly on a manager will call the API, such as GuildMemberManager#fetch and MessageManager#delete.

    In this specific situation, you need to add the cache object to your expression:

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

提交回复
热议问题