Home > Net >  Discord.js Embed Message giving errors
Discord.js Embed Message giving errors

Time:01-02

My code: https://pastebin.com/MTH5Fcm7

When i run the command ?help it gives this error:

(node:20460) DeprecationWarning: The message event is deprecated. Use messageCreate instead (Use node --trace-deprecation ... to show where the warning was created)

Uncaught DiscordAPIError: Cannot send an empty message No debugger available, can not send 'variables'

CodePudding user response:

assuming you are using the latest version of discord.js (v13) to send an embed you have to do <channel>.send({embeds: [array of embeds]})-

  • Related