You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Dec 22, 2023. It is now read-only.
Remove useless resolving. Resolving is not needed in most functions/methods.
// This is not neededmessages.edit(message, ...);// You can instead use one of the followingmessage.edit(...);messages.edit(message.id, ...);// These are not neededchannel.send('content');channel.send([embed]);// Instead, you can use thesechannel.send({content: 'content', ...options});channel.send({embeds: [embed], ...options});